Skip to content

Commit

Permalink
feat(image + config): use latest image and reduce max users default c…
Browse files Browse the repository at this point in the history
…onfig
  • Loading branch information
joaop221 committed Aug 25, 2024
1 parent 1cf1ef5 commit 3b0803d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/v-rising/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.13.0
version: 0.14.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
7 changes: 4 additions & 3 deletions charts/v-rising/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This Helm chart provides default values for deploying the v-rising application.
| `replicaCount` | Number of replicas for the v-rising deployment. | `1` |
| `image.repository` | Docker image repository for v-rising. | `ghcr.io/joaop221/v-rising-docker-arm64` |
| `image.pullPolicy` | Image pull policy for the v-rising container. | `IfNotPresent` |
| `image.tag` | Tag of the v-rising Docker image. | `v0.0.16` |
| `image.tag` | Tag of the v-rising Docker image. | `v0.0.17` |
| `imagePullSecrets` | List of image pull secrets (empty in this case). | `[]` (empty list) |
| `nameOverride` | Override for the release name (empty in this case). | `""` (empty string) |
| `fullnameOverride` | Override for the full release name (empty in this case). | `""` (empty string) |
Expand Down Expand Up @@ -38,13 +38,14 @@ This Helm chart provides default values for deploying the v-rising application.
| `config.TZ` | Timezone for the v-rising application. | `America/Sao_Paulo` |
| `config.VR_NAME` | Name of the v-rising server. | `V Rising Kubernetes` |
| `config.VR_FPS` | Frames per second for the game. | `30` |
| `config.VR_MAX_USERS` | Max Allowed User. | `10` |
| `config.VR_LOWER_FPS_WHEN_EMPTY` | Whether to lower FPS when the server is empty. | `true` |
| `config.VR_LOWER_FPS_WHEN_EMPTY_VALUE` | FPS value when the server is empty. | `5` |
| `config.VR_LIST_ON_EOS` | Whether to list the server on EOS. | `true` |
| `config.VR_LIST_ON_STEAM` | Whether to list the server on Steam. | `true` |
| `config.VR_SAVE_NAME` | Name for the saved game | `world1` |
| `config.VR_SAVE_COUNT` | Number of saved game slots. | `1` |
| `config.VR_SAVE_INTERVAL` | Interval (in seconds) for saving the game. | `300` |
| `config.VR_SAVE_COUNT` | Number of saved game slots. | `3` |
| `config.VR_SAVE_INTERVAL` | Interval (in seconds) for saving the game. | `120` |
| `secrets.VR_PASSWORD` | Secret password for the v-rising server (empty in this case). | `""` (empty string) |
| `autoscaling.enabled` | Whether to enable autoscaling. | `false` |
| `autoscaling.minReplicas` | Minimum number of replicas for autoscaling. | `1` |
Expand Down
7 changes: 4 additions & 3 deletions charts/v-rising/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
repository: ghcr.io/joaop221/v-rising-docker-arm64
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "v0.0.16"
tag: "v0.0.17"

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -69,13 +69,14 @@ config:
TZ: America/Sao_Paulo
VR_NAME: V Rising Kubernetes
VR_FPS: "30"
VR_MAX_USERS: "10"
VR_LOWER_FPS_WHEN_EMPTY: "true"
VR_LOWER_FPS_WHEN_EMPTY_VALUE: "5"
VR_LIST_ON_EOS: "true"
VR_LIST_ON_STEAM: "true"
VR_SAVE_NAME: world1
VR_SAVE_COUNT: "1"
VR_SAVE_INTERVAL: "300"
VR_SAVE_COUNT: "3"
VR_SAVE_INTERVAL: "120"

secrets:
VR_PASSWORD: ""
Expand Down

0 comments on commit 3b0803d

Please sign in to comment.