initial commit
This commit is contained in:
commit
c8e1981e9f
3 changed files with 45 additions and 0 deletions
3
README.md
Normal file
3
README.md
Normal 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
22
app.yaml
Normal 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
|
20
ressources/deployment.yaml
Normal file
20
ressources/deployment.yaml
Normal 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
|
Reference in a new issue