25 lines
589 B
25 lines
589 B
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: auth-postman-application
|
|
labels:
|
|
app: auth-postman-application
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: auth-postman-application
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: auth-postman-application
|
|
spec:
|
|
containers:
|
|
- name: auth-postman
|
|
image: slaventius/test3k_auth_postman:latest
|
|
imagePullPolicy: Always
|
|
envFrom:
|
|
- secretRef:
|
|
name: auth-postman-secret
|
|
- configMapRef:
|
|
name: auth-postman-config
|
|
|