Skip to content

Commit f5e1d88

Browse files
committed
Fix yaml
1 parent 849a177 commit f5e1d88

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ jobs:
4040
shell: bash
4141
run: |
4242
argocd login argocd-server.argocd \
43-
--insecure \
43+
--insecure \
4444
--grpc-web \
4545
--username admin \
46-
--password ${{ secrets.ARGOCD_PASSWORD }}
46+
--password ${{ secrets.ARGOCD_PASSWORD }}
4747
argocd app sync python-app

src/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def info():
1212
return jsonify({
1313
'time': datetime.datetime.now().strftime("%I:%M:%S%p on %B %d, %Y"),
1414
'hostname': socket.gethostname(),
15-
'message': 'Hey Boy!!!',
15+
'message': 'Hey Boy!',
1616
'deployed_on': 'kubernetes'
1717
})
1818

0 commit comments

Comments
 (0)