Skip to content

Commit

Permalink
🌱 update csi
Browse files Browse the repository at this point in the history
  • Loading branch information
batistein committed Apr 15, 2023
1 parent 2104484 commit 8c30ec9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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

0 comments on commit 8c30ec9

Please sign in to comment.