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
2 changes: 1 addition & 1 deletion stable/aws-sigv4-proxy-admission-controller/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: aws-sigv4-proxy-admission-controller
description: AWS SIGv4 Admission Controller Helm Chart for Kubernetes
version: 0.1.2
version: 0.1.3
appVersion: 1.0
home: https://github.com/aws/eks-charts
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
Expand Down
5 changes: 4 additions & 1 deletion stable/aws-sigv4-proxy-admission-controller/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,7 @@ helm uninstall aws-sigv4-proxy-admission-controller --namespace <namespace>
| `serviceAccount.name` | The name of the service account to create or use | `""`
| `rbac.create` | Whether to create rbac resources or not | `true`
| `webhookService.port` | Incoming port used by webhook service | `443`
| `webhookService.targetPort` | Target port used by webhook service | `443`
| `webhookService.targetPort` | Target port used by webhook service | `443`
| `nodeSelector` | Node labels for pod assignment | `{}`
| `tolerations` | Tolerations for pod assignment | `[]`
| `affinity` | Affinity for pod assignment | `{}`
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,16 @@ spec:
volumes:
- name: webhook-certs
secret:
secretName: {{ template "aws-sigv4-proxy-admission-controller.fullname" . }}-webhook-certs
secretName: {{ template "aws-sigv4-proxy-admission-controller.fullname" . }}-webhook-certs
{{- with .Values.nodeSelector }}
nodeSelector:
{{ toYaml . | indent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{ toYaml . | indent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{ toYaml . | indent 8 }}
{{- end }}
11 changes: 10 additions & 1 deletion stable/aws-sigv4-proxy-admission-controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,13 @@ webhookService:
# webhookService.port: Incoming port used by webhook service
port: 443
# webhookService.targetPort: Target port used by webhook service
targetPort: 443
targetPort: 443

# nodeSelector: Node labels for pod assignment
nodeSelector: {}

# tolerations: Tolerations for pod assignment
tolerations: []

# affinity: Affinity for pod assignment
affinity: {}