initial commit

This commit is contained in:
Aaron Riedel 2023-02-13 23:06:01 +01:00
commit c8e1981e9f
Signed by: aaron
GPG key ID: 643004654D40D577
3 changed files with 45 additions and 0 deletions

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# egress test deployment
this is the deployment for [egress-test](https://git.ar21.de/aaron/egress-test)

22
app.yaml Normal file
View file

@ -0,0 +1,22 @@
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: egress-test
namespace: argocd
spec:
project: default
source:
repoURL: https://git.ar21.de/aaron/egress-test-deployment.git
targetRevision: HEAD
path: ressources
destination:
server: https://kubernetes.default.svc
namespace: egress-test
syncPolicy:
syncOptions:
- CreateNamespace=true
automated:
selfHeal: false
prune: true

View file

@ -0,0 +1,20 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: egress-test-deployment
labels:
app: egress-test
spec:
replicas: 1
selector:
matchLabels:
app: egress-test
template:
metadata:
labels:
app: egress-test
spec:
containers:
- name: egress-test
image: aaronriedel/egress-test:53cef0a3061482e4a9c4510107220e3e016997d1