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
1 change: 1 addition & 0 deletions charts/k8s-gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ The following table lists the configurable parameters of the k8s_gateway chart a
| `image.repository` | Image repository | `oriedge/k8s_gateway` |
| `image.tag` | Image tag | `latest` |
| `image.pullPolicy` | Image pull policy | `Always` |
| `image.imagePullSecrets` | Image registry secret names | `[]` |
| `nodeSelector` | Node labels for pod assignment | `{}` |
| `tolerations` | Use to schedule on node taint to be not schedulable | `[]` |
| `topologySpreadConstraints` | Use topology spread constraints to control how Pods are spread across your cluster | `[]` |
Expand Down
4 changes: 4 additions & 0 deletions charts/k8s-gateway/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ spec:
checksum/config: {{ toYaml .Values | sha256sum }}
spec:
serviceAccountName: {{ include "k8s-gateway.serviceAccountName" . }}
{{- with .Values.image.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
image: "{{- if .Values.image.registry }}{{ .Values.image.registry }}/{{- end }}{{ .Values.image.repository }}:{{ .Values.image.tag }}"
Expand Down
1 change: 1 addition & 0 deletions charts/k8s-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ image:
repository: oriedge/k8s_gateway
tag: v0.4.0
pullPolicy: IfNotPresent
imagePullSecrets: []

# Delegated domain
domain: ""
Expand Down