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

🌱 update csi #57

Merged
merged 1 commit into from
Apr 15, 2023
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/hcloud-csi/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ maintainers:
- name: Syself
email: [email protected]
url: https://github.com/syself
version: 1.0.0
version: 1.0.1
appVersion: 2.1.0
4 changes: 2 additions & 2 deletions charts/hcloud-csi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ The command removes all the Kubernetes components associated with the chart and
| `controller.image.hcloudCSIDriver.pullSecrets` | hcloud-csi-driver image pull secrets | `[]` |
| `controller.replicaCount` | Number of controller replicas to deploy | `2` |
| `controller.hcloudToken.value` | Specifies the value for the hcloudToken. Creates a secret from that value. If you have already a hcloud token secret leave this empty. | `""` |
| `controller.hcloudToken.extistingSecret.name` | Specifies the name of an existing Secret for the hcloud Token | `hcloud` |
| `controller.hcloudToken.extistingSecret.key` | Specifies the key of an existing Secret for the hcloud Token | `token` |
| `controller.hcloudToken.existingSecret.name` | Specifies the name of an existing Secret for the hcloud Token | `hcloud` |
| `controller.hcloudToken.existingSecret.key` | Specifies the key of an existing Secret for the hcloud Token | `token` |
| `controller.hcloudVolumeDefaultLocation` | Set this to the location of your cluster. If set the controller could run anywhere. If leave empty the controller needs to run on a hcloud node. | `""` |
| `controller.containerPorts.metrics` | controller metrics container port | `9189` |
| `controller.containerPorts.healthz` | controller healthz container port | `9808` |
Expand Down
4 changes: 2 additions & 2 deletions charts/hcloud-csi/templates/controller/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ spec:
name: {{ template "common.names.fullname" . }}-hcloud-token
key: token
{{- else }}
name: {{ .Values.controller.hcloudToken.extistingSecret.name }}
key: {{ .Values.controller.hcloudToken.extistingSecret.key }}
name: {{ .Values.controller.hcloudToken.existingSecret.name }}
key: {{ .Values.controller.hcloudToken.existingSecret.key }}
{{- end }}
{{- if .Values.controller.extraEnvVars }}
{{- include "common.tplvalues.render" (dict "value" .Values.controller.extraEnvVars "context" $) | nindent 12 }}
Expand Down
6 changes: 3 additions & 3 deletions charts/hcloud-csi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,12 @@ controller:
replicaCount: 2

## @param controller.hcloudToken.value Specifies the value for the hcloudToken. Creates a secret from that value. If you have already a hcloud token secret leave this empty.
## @param controller.hcloudToken.extistingSecret.name Specifies the name of an existing Secret for the hcloud Token
## @param controller.hcloudToken.extistingSecret.key Specifies the key of an existing Secret for the hcloud Token
## @param controller.hcloudToken.existingSecret.name Specifies the name of an existing Secret for the hcloud Token
## @param controller.hcloudToken.existingSecret.key Specifies the key of an existing Secret for the hcloud Token
##
hcloudToken:
value: ""
extistingSecret:
existingSecret:
name: hcloud
key: token

Expand Down