diff --git a/README.md b/README.md index 27a39c0..d665e84 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ helm install valheim-server valheim-k8s/valheim-k8s \ ## Configuration | Parameter | Description | Default | -| :----------------------------------- | :--------------------------------------------------------------------- | :------------------------ | +|:-------------------------------------|:-----------------------------------------------------------------------|:--------------------------| | `worldName` | Prefix of the world files to use (will make new if missing) | `example-world-name` | | `serverName` | Server name displayed in the server browser(s) | `example-server-name` | | `password` | Server password | `password` | @@ -40,6 +40,7 @@ helm install valheim-server valheim-k8s/valheim-k8s \ | `tolerations` | | `[]` | | `image.repository` | Specifies container image repository | `lloesche/valheim-server` | | `image.tag` | Specifies container image tag | `latest` | +| `priorityClassName` | Specifies the priority class name for the deployment | None | ## Persistence diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 9c7f9df..bb8b09a 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -3,5 +3,5 @@ name: valheim-k8s description: Basic chart for deploying valheim to a k8s homelab icon: https://www.google.com/url?sa=i&url=https%3A%2F%2Fstore.steampowered.com%2Fapp%2F892970%2FValheim%2F&psig=AOvVaw1MMOQJzse-eyruGtGG0DEs&ust=1641045420126000&source=images&cd=vfe&ved=0CAsQjRxqFwoTCIDmhd2YjvUCFQAAAAAdAAAAABAJ type: application -version: 0.2.0 +version: 1.1.5 appVersion: 1.16.0 diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index 21713bd..393e23d 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -94,3 +94,6 @@ spec: {{ end }} {{ end }} {{ end }} + {{ if .Values.priorityClassName }} + priorityClassName: {{ .Values.priorityClassName }} + {{ end }} diff --git a/chart/values.yaml b/chart/values.yaml index 7075959..0dc880a 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -33,6 +33,8 @@ nodeSelector: {} tolerations: {} +# If you utilize priority classes, you can define the priority class for this deployment here +# priorityClassName: my-priority-class-name # resources: # requests: diff --git a/version b/version index af0b7dd..1cc5f65 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.0.6 +1.1.0 \ No newline at end of file