Torma Kristóf
dc9d60cc61
All checks were successful
continuous-integration/drone/push Build is passing
27 lines
501 B
YAML
27 lines
501 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: api-gateway
|
|
namespace: birbnetes
|
|
labels:
|
|
app: api-gateway
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: api-gateway
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: api-gateway
|
|
spec:
|
|
containers:
|
|
- image: registry.kmlabz.com/tormakris/api-gateway
|
|
name: api-gateway
|
|
ports:
|
|
- containerPort: 8080
|
|
imagePullSecrets:
|
|
- name: regcred
|