Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: swap image.name to image.repository #251

Merged
merged 4 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 }}
resources:
{{- with .Values.server.resources }}
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