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

Test some changes #1

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Open
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
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ Helm Charts in this repo:
- Are deployed by an umbrella chart in the [example-multiservice-deploy](https://github.com/codefresh-contrib/example-multiservice-deploy) GitOps repo
- Should be versioned only when the structure of the chart changes (not for image tag changes) - this minimizes chart version sprawl
- Image tags are referenced from Global values in the umbrella chart (image tag changes are versioned there)

4 changes: 4 additions & 0 deletions ctrlr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
FROM python:3.8.2-alpine3.11

# Labels
LABEL cf_account="salesdemo" \
source="https://github.com/codefresh-contrib/salesdemo-flaskr"

ENV FLASK_APP=flaskr
ENV FLASK_ENV=development
ENV TEST=init
ENV TEST2=other
ENV TEST3=other2

COPY . /app

Expand Down
4 changes: 2 additions & 2 deletions ctrlr/flaskr/static/style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
html {
font-family: sans-serif;
background: #eee;
background: #ddd;
padding: 1rem;
}

Expand All @@ -26,7 +26,7 @@ hr {
}

nav {
background: LemonChiffon;
background: Beige;
display: flex;
align-items: center;
padding: 0 0.5rem;
Expand Down