forked from LengKundee/MQL5-Google-Onedrive
23 lines
521 B
YAML
23 lines
521 B
YAML
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: management
|
||
|
|
namespace: boathouse-prod
|
||
|
|
spec:
|
||
|
|
replicas: 1
|
||
|
|
selector:
|
||
|
|
matchLabels:
|
||
|
|
app: management
|
||
|
|
template:
|
||
|
|
metadata:
|
||
|
|
labels:
|
||
|
|
app: management
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- image: docker.pkg.github.com/#{BOATHOUSE_ORG_NAME}#/boat-house/management:#{env.BRANCH_NAME}#-#{env.BUILD_ID}#
|
||
|
|
name: management
|
||
|
|
ports:
|
||
|
|
- containerPort: 4000
|
||
|
|
imagePullSecrets:
|
||
|
|
- name: regcred
|
||
|
|
restartPolicy: Always
|