Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prod #35

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open

Prod #35

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Python application

on:
push:
pull_request:
paths:
- 'python/*'

jobs:
build:

Expand All @@ -23,6 +23,6 @@ jobs:
- name: Build & Push Image
run: |
cd ./python
echo "${{ secrets.DOCKERPW }}" | docker login -u "[your dockerhub login here]" --password-stdin
docker image build -t [your dockerhub username here]/gitops:hellov1.0 .
docker push [your docker hub username here]/gitops:hellov1.0
echo "${{ secrets.DOCKERPW }}" | docker login -u "julianoalberto" --password-stdin
docker image build -t julianoalberto/gitops:hellov1.2 .
docker push julianoalberto/gitops:hellov1.2
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
7 changes: 5 additions & 2 deletions python/app.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
from flask import Flask

app = Flask(__name__)


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


if __name__ == "__main__":
app.run(host='0.0.0.0', port=8000)
app.run(host="0.0.0.0", port=8000)
19 changes: 19 additions & 0 deletions qa/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
19 changes: 19 additions & 0 deletions workloads/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.0