Skip to content

Commit

Permalink
deploy(helm): bump chart config and version
Browse files Browse the repository at this point in the history
  • Loading branch information
clementnuss committed Aug 30, 2022
1 parent a9437d4 commit 0424e3d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/kubelet-csr-approver/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: kubelet-csr-approver
description: Kubelet CSR Approver
type: application
version: 0.2.3
appVersion: v0.2.3
version: 0.2.4
appVersion: v0.2.4
maintainers:
- name: clementnuss
- name: treydock
8 changes: 8 additions & 0 deletions charts/kubelet-csr-approver/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ spec:
- name: IGNORE_NON_SYSTEM_NODE
value: {{ .Values.ignoreNonSystemNode | quote }}
{{- end }}
{{- if .Values.allowedDnsNames}}
- name: ALLOWED_DNS_NAMES
value: {{ .Values.allowedDnsNames | quote }}
{{- end }}
{{- if .Values.bypassHostnameCheck}}
- name: BYPASS_HOSTNAME_CHECK
value: {{ .Values.bypassHostnameCheck | quote }}
{{- end }}
{{- with .Values.env }}
{{ toYaml . | nindent 12 }}
{{- end }}
Expand Down
4 changes: 4 additions & 0 deletions charts/kubelet-csr-approver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ providerRegex: ""
maxExpirationSeconds: ""
# optional, permits to bypass dns resolution checks. default: false
bypassDnsResolution: false
# number of DNS SAN names allowed in a certificate request. defaults to 1
allowedDnsNames: 1
# optional, permits ignoring CSRs with another Username than `system:node:...`
ignoreNonSystemNode: false
# set this parameter to true to ignore mismatching DNS name and hostname
bypassHostnameCheck: false
# optional, list of IP (IPv4, IPv6) subnets that are allowed to submit CSRs
providerIpPrefixes: []
# - 192.168.8.0/22
Expand Down

0 comments on commit 0424e3d

Please sign in to comment.