30 lines
736 B
YAML
30 lines
736 B
YAML
apiVersion: admissionregistration.k8s.io/v1
|
|
kind: ValidatingWebhookConfiguration
|
|
metadata:
|
|
name: resourcesquotas.quota.kubesphere.io
|
|
webhooks:
|
|
- admissionReviewVersions:
|
|
- v1beta1
|
|
clientConfig:
|
|
caBundle: <caBundle>
|
|
service:
|
|
name: ks-controller-manager
|
|
namespace: kubesphere-system
|
|
path: /validate-quota-kubesphere-io-v1alpha2
|
|
port: 443
|
|
failurePolicy: Ignore
|
|
matchPolicy: Exact
|
|
name: resourcesquotas.quota.kubesphere.io
|
|
namespaceSelector: {}
|
|
objectSelector: {}
|
|
rules:
|
|
- apiGroups:
|
|
- '*'
|
|
apiVersions:
|
|
- '*'
|
|
operations:
|
|
- CREATE
|
|
resources:
|
|
- pods
|
|
scope: '*'
|
|
sideEffects: None |