Skip to content

Commit

Permalink
Add prod
Browse files Browse the repository at this point in the history
  • Loading branch information
Juliano Goncalves committed Jul 17, 2023
1 parent cc87337 commit 6fd2711
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions production/hello.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello
namespace: lasample
labels:
app: hello
spec:
selector:
matchLabels:
app: hello
template:
metadata:
labels:
app: hello
spec:
containers:
- name: hello
image: linuxacademycontent/gitops:hellov1.2
2 changes: 1 addition & 1 deletion python/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

@app.route("/")
def hello():
return "Hello from QA!"
return "Hello from prod!"


if __name__ == "__main__":
Expand Down

0 comments on commit 6fd2711

Please sign in to comment.