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 afe21e26cb
Signed by: martin.mccaffery
GPG key ID: 7C4D0F375BCEE533
3 changed files with 100 additions and 0 deletions

34
argocd-stack/docs.yaml Normal file
View file

@ -0,0 +1,34 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: docs
namespace: argocd
labels:
env: prod
spec:
project: default
syncPolicy:
automated:
selfHeal: true
syncOptions:
- CreateNamespace=true
- ServerSideApply=true
destination:
name: in-cluster
namespace: docs
syncOptions:
- CreateNamespace=true
sources:
- repoURL: https://edp.buildth.ing/DevFW-CICD/website-and-documentation
targetRevision: HEAD
path: argocd-stack/docs/argocd.yaml
kustomize:
patches:
- target:
kind: Deployment
name: docs
patch: |-
- op: replace
path: /spec/template/spec/containers/0/image
value: edp.buildth.ing/devfw-cicd/website-and-documentation:$ARGOCD_APP_REVISION

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