k8s/manifests/01-deployments/hw-hw.yaml
Simple_Not 67b10ff757
All checks were successful
continuous-integration/drone/push Build is passing
labels?
2023-06-21 17:18:21 +10:00

24 lines
645 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: helloworld
namespace: vdk2ch
spec:
selector:
matchLabels:
app: helloworld
replicas: 1 # tells deployment to run 1 pods matching the template
template: # create pods using pod definition in this template
metadata:
labels:
app: helloworld
what-ever-label-i-add-here: 'test_string-asfd14123UE.asdfeee333DS'
what/here.com: '312321'
annotations:
imageregistry: "https://hub.docker.com/"
spec:
containers:
- name: helloworld
image: karthequian/helloworld:latest
ports:
- containerPort: 80