Skip to content
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
4 changes: 4 additions & 0 deletions deploy/charts/konnector/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.hostAliases }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
Expand Down
8 changes: 8 additions & 0 deletions deploy/charts/konnector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,14 @@ resources:
cpu: 500m
memory: 256Mi

# Host aliases injected into /etc/hosts.
# Needed when circumventing local DNS (e.g. local setup).
hostAliases: []
# Example:
# - ip: "1.2.3.4"
# hostnames:
# - kcp.api.portal.localhost

podAnnotations: {}
podLabels: {}

Expand Down