init: hello-cicd project setup
This commit is contained in:
30
k8s/deployment.yaml
Normal file
30
k8s/deployment.yaml
Normal file
@@ -0,0 +1,30 @@
|
||||
# k8s/deployment.yaml
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: hello-cicd
|
||||
namespace: student-ivanivso7
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: hello-cicd
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: hello-cicd
|
||||
spec:
|
||||
imagePullSecrets:
|
||||
- name: gitea-creds
|
||||
containers:
|
||||
- name: hello-cicd
|
||||
image: git.fpmoz.sum.ba/ivanivso7/hello-cicd:latest
|
||||
ports:
|
||||
- containerPort: 8000
|
||||
env:
|
||||
- name: APP_VERSION
|
||||
value: "latest"
|
||||
resources:
|
||||
requests: {cpu: 50m, memory: 64Mi}
|
||||
limits: {cpu: 200m, memory: 128Mi}
|
||||
|
||||
13
k8s/service.yaml
Normal file
13
k8s/service.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
# k8s/service.yaml
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: hello-cicd-svc
|
||||
namespace: student-VAŠ_KORISNIK
|
||||
spec:
|
||||
selector:
|
||||
app: hello-cicd
|
||||
ports:
|
||||
- port: 80
|
||||
targetPort: 8000
|
||||
type: NodePort
|
||||
Reference in New Issue
Block a user