Last active
November 29, 2022 09:59
-
-
Save mohllal/64168f519c7c19ad688d28a2376c4bc2 to your computer and use it in GitHub Desktop.
An example of Kubernetes Service for the admission webhook server
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
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: kubernetes-sidecar-injector | |
labels: | |
app.kubernetes.io/instance: kubernetes-sidecar-injector | |
spec: | |
type: ClusterIP | |
ports: | |
- port: 443 | |
targetPort: 8443 | |
protocol: TCP | |
name: https | |
selector: | |
app.kubernetes.io/instance: kubernetes-sidecar-injector |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment