Skip to content

Commit

Permalink
Merge pull request thijsvanloef#251 from anthr76/image-repo
Browse files Browse the repository at this point in the history
fix: swap image.name to image.repository
  • Loading branch information
thijsvanloef authored Feb 5, 2024
2 parents 2046cfd + 9cd4926 commit 438f04c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/palworld/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: palworld
version: 0.0.2
version: 0.1.0
description: This chart will provide a Palworld server installation on a kubernetes cluster
type: application
keywords:
Expand Down
15 changes: 8 additions & 7 deletions charts/palworld/VALUES_SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# palworld

![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational)
![Type: application](https://img.shields.io/badge/Type-application-informational)
![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational)
![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational?style=flat-square)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)

This chart will provide a Palworld server installation on a kubernetes cluster.
This chart will provide a Palworld server installation on a kubernetes cluster

**Homepage:** <https://github.com/thijsvanloef/palworld-server-docker>

Expand All @@ -13,6 +13,7 @@ This chart will provide a Palworld server installation on a kubernetes cluster.
| Name | Email | Url |
| ---- | ------ | --- |
| Filipe Souza | <[email protected]> | <https://github.com/Filipe-Souza> |
| Twinki | | <https://github.com/Twinki14> |

## Source Code

Expand Down Expand Up @@ -49,7 +50,7 @@ This chart will provide a Palworld server installation on a kubernetes cluster.
| server.config.world_parameters | object | | Configures the game world settings. The key:values here should represent in game accepted values. Wrap all values with quotes here to avoid validation issues. |
| server.image | dict | | Define the parameters for the server image container |
| server.image.imagePullPolicy | string | `"IfNotPresent"` | Define the pull policy for the server image. |
| server.image.name | string | `"thijsvanloef/palworld-server-docker"` | Name of the image, without the tag. |
| server.image.repository | string | `"thijsvanloef/palworld-server-docker"` | Repository of the image, without the tag. |
| server.image.tag | string | `"latest"` | The tag of the image. |
| server.labels | object | `{}` | Additional labels to the resources |
| server.ports | dict | | Change the ports to be mapped to the pod. If you change those, make sure to change the service.ports and server.config accordingly. |
Expand All @@ -66,7 +67,7 @@ This chart will provide a Palworld server installation on a kubernetes cluster.
| server.service.ports[0] | dict | `{"name":"game","port":8211,"protocol":"UDP","targetPort":8211}` | The "game" port definition. If you change this, make sure to change the server.ports.game and server.config.port accordingly. |
| server.service.ports[1] | dict | `{"name":"query","port":27015,"protocol":"UDP","targetPort":27015}` | The "query" port definition . If you change this, make sure to change the server.ports.query and server.config.query_port accordingly. |
| server.service.ports[2] | dict | `{"name":"rcon","port":25575,"protocol":"UDP","targetPort":25575}` | The "rcon" port definition . If you change this, make sure to change the server.ports.rcon and server.config.rcon.port accordingly. |
| server.service.type | string | `"LoadBalancer"` | The type of service to be created. |
| server.service.type | string | `"ClusterIP"` | The type of service to be created. For minikube, set this to NodePort, elsewhere use LoadBalancer Use ClusterIP if your setup includes ingress controller |
| server.storage | dict | `{"external":false,"externalName":"","preventDelete":false,"size":"12Gi","storageClassName":""}` | Define some parameters for the storage volume |
| server.storage.external | bool | `false` | Define if it will use an existing PVC containing the installation data. |
| server.storage.externalName | bool | `""` | The external PVC name to use. |
Expand All @@ -76,4 +77,4 @@ This chart will provide a Palworld server installation on a kubernetes cluster.
| server.strategy | string | `"Recreate"` | Change the deployment strategy |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.12.0](https://github.com/norwoodj/helm-docs/releases/v1.12.0)
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
2 changes: 1 addition & 1 deletion charts/palworld/templates/deployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
protocol: TCP
{{ end }}
- name: server
image: "{{ .Values.server.image.name }}:{{ .Values.server.image.tag }}"
image: "{{ .Values.server.image.repository }}:{{ .Values.server.image.tag }}"
imagePullPolicy: {{ .Values.server.image.imagePullPolicy }}
lifecycle:
preStop:
Expand Down
4 changes: 2 additions & 2 deletions charts/palworld/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ server:
# -- (dict) Define the parameters for the server image container
# @notationType -- bigValue
image:
# -- Name of the image, without the tag.
name: thijsvanloef/palworld-server-docker
# -- Repository of the image, without the tag.
repository: thijsvanloef/palworld-server-docker
# -- The tag of the image.
tag: latest
# -- Define the pull policy for the server image.
Expand Down

0 comments on commit 438f04c

Please sign in to comment.