-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: detect when ControlPlane's admission webhook is disabled and en…
…sure relevant resources do not exist (#326) * feat: detect when ControlPlane's admission webhook is disabled and ensure relevant resources do not exist * chore: use pointer to indicate AdmissionWebhookCertSecretName optionality * chore: use an argument for webhook being enabled * Revert "chore: use an argument for webhook being enabled" This reverts commit b4bec06.
- Loading branch information
Showing
23 changed files
with
683 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
111 changes: 111 additions & 0 deletions
111
config/samples/gateway-with-disabled-controlplane-admission-webhook.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: echo | ||
spec: | ||
ports: | ||
- protocol: TCP | ||
name: http | ||
port: 80 | ||
targetPort: http | ||
selector: | ||
app: echo | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
labels: | ||
app: echo | ||
name: echo | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: echo | ||
template: | ||
metadata: | ||
labels: | ||
app: echo | ||
spec: | ||
containers: | ||
- name: echo | ||
image: registry.k8s.io/e2e-test-images/agnhost:2.40 | ||
command: | ||
- /agnhost | ||
- netexec | ||
- --http-port=8080 | ||
ports: | ||
- containerPort: 8080 | ||
name: http | ||
env: | ||
- name: NODE_NAME | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: spec.nodeName | ||
- name: POD_NAME | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.name | ||
- name: NAMESPACE | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.namespace | ||
- name: POD_IP | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: status.podIP | ||
--- | ||
kind: GatewayConfiguration | ||
apiVersion: gateway-operator.konghq.com/v1beta1 | ||
metadata: | ||
name: kong | ||
namespace: default | ||
spec: | ||
dataPlaneOptions: | ||
deployment: | ||
podTemplateSpec: | ||
spec: | ||
containers: | ||
- name: proxy | ||
# renovate: datasource=docker versioning=docker | ||
image: kong/kong-gateway:3.7 | ||
readinessProbe: | ||
initialDelaySeconds: 1 | ||
periodSeconds: 1 | ||
controlPlaneOptions: | ||
deployment: | ||
podTemplateSpec: | ||
spec: | ||
containers: | ||
- name: controller | ||
# renovate: datasource=docker versioning=docker | ||
image: kong/kubernetes-ingress-controller:3.1.6 | ||
readinessProbe: | ||
initialDelaySeconds: 1 | ||
periodSeconds: 1 | ||
env: | ||
- name: CONTROLLER_ADMISSION_WEBHOOK_LISTEN | ||
value: "off" | ||
--- | ||
apiVersion: gateway.networking.k8s.io/v1 | ||
kind: GatewayClass | ||
metadata: | ||
name: kong | ||
spec: | ||
controllerName: konghq.com/gateway-operator | ||
parametersRef: | ||
group: gateway-operator.konghq.com | ||
kind: GatewayConfiguration | ||
name: kong | ||
namespace: default | ||
--- | ||
apiVersion: gateway.networking.k8s.io/v1 | ||
kind: Gateway | ||
metadata: | ||
name: kong | ||
namespace: default | ||
spec: | ||
gatewayClassName: kong | ||
listeners: | ||
- name: http | ||
protocol: HTTP | ||
port: 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.