Last active
January 30, 2022 14:35
-
-
Save gerrited/c9691d8dc4be346038c5f4908a9a2adf to your computer and use it in GitHub Desktop.
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: apps/v1 | |
kind: Deployment | |
metadata: | |
name: hello-blinkt | |
labels: | |
app: hello-blinkt | |
spec: | |
replicas: 16 | |
selector: | |
matchLabels: | |
app: hello-blinkt | |
template: | |
metadata: | |
labels: | |
app: hello-blinkt | |
blinkt: show | |
blinktColor: "000011" | |
spec: | |
containers: | |
- name: hello-blinkt | |
image: nginx:latest |
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: apps/v1 | |
kind: Deployment | |
metadata: | |
name: hello-blinkt | |
labels: | |
app: hello-blinkt | |
spec: | |
replicas: 16 | |
selector: | |
matchLabels: | |
app: hello-blinkt | |
template: | |
metadata: | |
labels: | |
app: hello-blinkt | |
blinkt: show | |
blinktColor: "001100" | |
spec: | |
containers: | |
- name: hello-blinkt | |
image: nginx:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment