We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 849a177 commit f5e1d88Copy full SHA for f5e1d88
2 files changed
.github/workflows/ci.yaml
@@ -40,8 +40,8 @@ jobs:
40
shell: bash
41
run: |
42
argocd login argocd-server.argocd \
43
- --insecure \
+ --insecure \
44
--grpc-web \
45
--username admin \
46
- --password ${{ secrets.ARGOCD_PASSWORD }}
+ --password ${{ secrets.ARGOCD_PASSWORD }}
47
argocd app sync python-app
src/app.py
@@ -12,7 +12,7 @@ def info():
12
return jsonify({
13
'time': datetime.datetime.now().strftime("%I:%M:%S%p on %B %d, %Y"),
14
'hostname': socket.gethostname(),
15
- 'message': 'Hey Boy!!!',
+ 'message': 'Hey Boy!',
16
'deployed_on': 'kubernetes'
17
})
18
0 commit comments