feat(deployment): add ArgoCD deployment stack
Some checks failed
Hugo Site Tests / test (push) Failing after 1s
ci / build (push) Successful in 56s

This commit is contained in:
Martin McCaffery 2025-12-17 16:14:14 +01:00
parent 288eb7a91c
commit 3a709145c9
Signed by: martin.mccaffery
GPG key ID: 7C4D0F375BCEE533
3 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,62 @@
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: docs
name: docs
spec:
replicas: 1
selector:
matchLabels:
app: docs
strategy: {}
template:
metadata:
labels:
app: docs
spec:
containers:
- image: SPECIFIED_BY_KUSTOMIZE
name: docs
ports:
- name: http
containerPort: 4050
protocol: TCP
resources: {}
---
apiVersion: v1
kind: Service
metadata:
name: docs
spec:
selector:
app: docs
ports:
- protocol: TCP
port: 80
targetPort: 4050
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: docs
annotations:
cert-manager.io/cluster-issuer: main
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
spec:
ingressClassName: nginx
rules:
- host: docs.edp.buildth.ing
http:
paths:
- backend:
service:
name: docs
port:
number: 80
path: /
pathType: Prefix
tls:
- hosts:
- docs.edp.buildth.ing
secretName: docs-edp-buildth-ing-tls

View file

@ -0,0 +1,4 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- deploy.yaml