diff --git a/README.md b/README.md index 9a350f55f431..b4d3af5bea67 100644 --- a/README.md +++ b/README.md @@ -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) - diff --git a/ctrlr/Dockerfile b/ctrlr/Dockerfile index df666f4c7f68..4da186be47d7 100644 --- a/ctrlr/Dockerfile +++ b/ctrlr/Dockerfile @@ -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 diff --git a/ctrlr/flaskr/static/style.css b/ctrlr/flaskr/static/style.css index 0a77f9998160..29bad8352ab5 100644 --- a/ctrlr/flaskr/static/style.css +++ b/ctrlr/flaskr/static/style.css @@ -1,6 +1,6 @@ html { font-family: sans-serif; - background: #eee; + background: #ddd; padding: 1rem; } @@ -26,7 +26,7 @@ hr { } nav { - background: LemonChiffon; + background: Beige; display: flex; align-items: center; padding: 0 0.5rem;