You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
568 B
26 lines
568 B
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: a-deployment
|
|
labels:
|
|
app: a-application
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
project: a-application
|
|
template:
|
|
metadata:
|
|
labels:
|
|
project: a-application
|
|
spec:
|
|
imagePullSecrets:
|
|
- name: a-secret-docker-registry
|
|
containers:
|
|
- name: a-application
|
|
image: git.applicatura.com:5050/obi/auth_service:latest
|
|
ports:
|
|
- containerPort: 8888
|
|
envFrom:
|
|
- configMapRef:
|
|
name: a-config
|
|
|