Skip to content

Commit

Permalink
Merge branch 'main' into support-registry-override
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinBisson authored Nov 4, 2023
2 parents f5a51da + 56f161c commit 14ac550
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
3 changes: 3 additions & 0 deletions keda/templates/manager/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ spec:
- containerPort: 8080
name: http
protocol: TCP
- containerPort: 9666
name: metricsservice
protocol: TCP
env:
- name: WATCH_NAMESPACE
value: {{ .Values.watchNamespace | quote }}
Expand Down
48 changes: 48 additions & 0 deletions keda/templates/webhooks/validatingconfiguration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,52 @@ webhooks:
- scaledobjects
sideEffects: None
timeoutSeconds: 10
- admissionReviewVersions:
- v1
clientConfig:
service:
name: {{ .Values.webhooks.name }}
namespace: {{ .Release.Namespace }}
path: /validate-keda-sh-v1alpha1-triggerauthentication
failurePolicy: {{ .Values.webhooks.failurePolicy }}
matchPolicy: Equivalent
name: vstriggerauthentication.kb.io
namespaceSelector: {}
objectSelector: {}
rules:
- apiGroups:
- keda.sh
apiVersions:
- v1alpha1
operations:
- CREATE
- UPDATE
resources:
- triggerauthentications
sideEffects: None
timeoutSeconds: 10
- admissionReviewVersions:
- v1
clientConfig:
service:
name: {{ .Values.webhooks.name }}
namespace: {{ .Release.Namespace }}
path: /validate-keda-sh-v1alpha1-clustertriggerauthentication
failurePolicy: {{ .Values.webhooks.failurePolicy }}
matchPolicy: Equivalent
name: vsclustertriggerauthentication.kb.io
namespaceSelector: {}
objectSelector: {}
rules:
- apiGroups:
- keda.sh
apiVersions:
- v1alpha1
operations:
- CREATE
- UPDATE
resources:
- clustertriggerauthentications
sideEffects: None
timeoutSeconds: 10
{{- end }}

0 comments on commit 14ac550

Please sign in to comment.