Skip to content
Open
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
4 changes: 2 additions & 2 deletions step-certificates/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: step-certificates
version: 1.30.0
appVersion: 0.30.0
version: 1.30.2
appVersion: 0.30.2
description: An online certificate authority and related tools for secure automated certificate management, so you can use TLS everywhere.
keywords:
- acme
Expand Down
1 change: 1 addition & 0 deletions step-certificates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ chart and their default values.
| `existingSecrets.configAsSecret` | When `true`use existing secret for configuration instead of ConfigMap. | `false` |
| `podSecurityContext` | Set SecurityContext on POD level for STEP CA and STEP CA bootstrap job. | See [values.yaml](./values.yaml) |
| `shareProcessNamespace` | Share a single process namespace between all of the containers in a pod. | `false` |
| `dnsConfig` | Custom DNS entries in `/etc/resolv.conf`. | {} |
| `hostAliases` | Additional entries for `/etc/hosts`. | [] |

Specify each parameter using the `--set key=value[,key=value]` argument to `helm
Expand Down
4 changes: 4 additions & 0 deletions step-certificates/templates/ca.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ spec:
{{- with .Values.extraContainers }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.dnsConfig }}
dnsConfig:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.hostAliases }}
hostAliases:
{{- toYaml . | nindent 8 }}
Expand Down
9 changes: 9 additions & 0 deletions step-certificates/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,15 @@ extraInitContainers: []
##
extraContainers: []

## Configure DNS configuration
## dnsConfig:
## nameservers:
## - 192.0.2.1 # this is an example
## searches:
## - ns1.svc.cluster-domain.example
## - my.dns.search.suffix
dnsConfig: {}

## Configure additional entries for /etc/hosts.
## hostAliases:
## - ip: 10.0.0.1
Expand Down
Loading