bump up version

This commit is contained in:
marcel-dempers 2019-11-02 13:32:15 +11:00
parent 6a43fbe890
commit 1c41fe3e40
3 changed files with 9 additions and 31 deletions

View File

@ -1,7 +1,7 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: test2
name: example-app
namespace: argocd
spec:
project: default
@ -9,6 +9,12 @@ spec:
repoURL: https://github.com/marcel-dempers/docker-development-youtube-series.git
targetRevision: HEAD
path: argo/example-app
directory:
recurse: true
destination:
server: https://kubernetes.default.svc
namespace: test
namespace: example-app
syncPolicy:
automated:
prune: false
selfHeal: false

View File

@ -22,7 +22,7 @@ spec:
spec:
containers:
- name: example-app
image: aimvector/python:1.0.0
image: aimvector/python:1.0.1
imagePullPolicy: Always
ports:
- containerPort: 5000

View File

@ -1,28 +0,0 @@
# Deployments
Build an example app:
```
# Important!
# make sure you are at root of the repository
# in your terminal
# you can choose which app you want to build!
# aimvector/golang:1.0.0
docker-compose build golang
# aimvector/csharp:1.0.0
docker-compose build csharp
# aimvector/nodejs:1.0.0
docker-compose build nodejs
# aimvector/python:1.0.0
docker-compose build python
```
Take a look at example [deployment yaml](./deployment.yaml)