feat(portfolio): add staging environment
This commit is contained in:
parent
0dda9f282d
commit
13ea8de355
11 changed files with 339 additions and 0 deletions
22
apps/portfolio/base/deployment.yaml
Normal file
22
apps/portfolio/base/deployment.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: portfolio
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: portfolio
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
labels:
|
||||
app: portfolio
|
||||
spec:
|
||||
containers:
|
||||
- image: registry.int.nc.landry.land/portfolio-site
|
||||
name: portfolio-site
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
name: http
|
||||
restartPolicy: Always
|
||||
Loading…
Add table
Add a link
Reference in a new issue