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
589 B
26 lines
589 B
2 years ago
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: auth-postman-application
|
||
|
labels:
|
||
|
app: auth-postman-application
|
||
|
spec:
|
||
2 years ago
|
replicas: 1
|
||
2 years ago
|
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:
|
||
2 years ago
|
- secretRef:
|
||
|
name: auth-postman-secret
|
||
2 years ago
|
- configMapRef:
|
||
|
name: auth-postman-config
|