Skip to content

Commit

Permalink
add .env file to .gitignore
Browse files Browse the repository at this point in the history
updated /status location in nginx.conf

Signed-off-by: Stefan Maute <stefan.maute@bosch-si.com>
  • Loading branch information
Stefan Maute authored and thjaeckle committed Mar 8, 2019
1 parent 3e9e23e commit 266a7b7
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -16,3 +16,4 @@ dependencies.txt
/deployment/docker/sandbox/graphite/storage
ajcore.*.txt
*.mdb
.env
1 change: 0 additions & 1 deletion deployment/docker/.env

This file was deleted.

4 changes: 3 additions & 1 deletion deployment/docker/nginx.conf
Expand Up @@ -81,7 +81,9 @@ http {
location /status {
include nginx-cors.conf;

proxy_pass http://gateway:8080/overall/status;
# switch to overall route for new versions
# proxy_pass http://gateway:8080/overall/status;
proxy_pass http://gateway:8080/status;
proxy_http_version 1.1;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
Expand Down
4 changes: 3 additions & 1 deletion deployment/kubernetes/nginx/nginx.conf
Expand Up @@ -81,7 +81,9 @@ http {
location /status {
include nginx-cors.conf;

proxy_pass http://gateway:8080/overall/status;
# switch to overall route for new versions
# proxy_pass http://gateway:8080/overall/status;
proxy_pass http://gateway:8080/status;
proxy_http_version 1.1;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
Expand Down
12 changes: 6 additions & 6 deletions deployment/openshift/ditto/ditto-cluster.yaml
Expand Up @@ -20,7 +20,7 @@ spec:
restartPolicy: Always
containers:
- name: concierge
image: docker.io/eclipse/ditto-concierge:0.8.0
image: docker.io/eclipse/ditto-concierge:lastest
imagePullPolicy: IfNotPresent
command: ["java"]
args: ["-jar", "/opt/ditto/starter.jar"]
Expand Down Expand Up @@ -93,7 +93,7 @@ spec:
restartPolicy: Always
containers:
- name: connectivity
image: docker.io/eclipse/ditto-connectivity:0.8.0
image: docker.io/eclipse/ditto-connectivity:latest
imagePullPolicy: IfNotPresent
command: ["java"]
args: ["-jar", "/opt/ditto/starter.jar"]
Expand Down Expand Up @@ -166,7 +166,7 @@ spec:
restartPolicy: Always
containers:
- name: things
image: docker.io/eclipse/ditto-things:0.8.0
image: docker.io/eclipse/ditto-things:latest
imagePullPolicy: IfNotPresent
command: ["java"]
args: ["-jar", "/opt/ditto/starter.jar"]
Expand Down Expand Up @@ -238,7 +238,7 @@ spec:
spec:
containers:
- name: things-search
image: docker.io/eclipse/ditto-things-search:0.8.0
image: docker.io/eclipse/ditto-things-search:latest
imagePullPolicy: IfNotPresent
command: ["java"]
args: ["-jar", "/opt/ditto/starter.jar"]
Expand Down Expand Up @@ -309,7 +309,7 @@ spec:
spec:
containers:
- name: policies
image: docker.io/eclipse//eclipse-ditto-policies:0.8.0
image: docker.io/eclipse//eclipse-ditto-policies:latest
imagePullPolicy: IfNotPresent
command: ["java"]
args: ["-jar", "/opt/ditto/starter.jar"]
Expand Down Expand Up @@ -381,7 +381,7 @@ spec:
spec:
containers:
- name: gateway
image: docker.io/eclipse/ditto-gateway:0.8.0
image: docker.io/eclipse/ditto-gateway:latest
imagePullPolicy: IfNotPresent
command: ["java"]
args: ["-jar", "/opt/ditto/starter.jar"]
Expand Down
4 changes: 3 additions & 1 deletion deployment/openshift/nginx/nginx.conf
Expand Up @@ -81,7 +81,9 @@ http {
location /status {
include nginx-cors.conf;

proxy_pass http://gateway:8080/overall/status
# switch to overall route for new versions
# proxy_pass http://gateway:8080/overall/status
proxy_pass http://gateway:8080/status
proxy_http_version 1.1;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
Expand Down

0 comments on commit 266a7b7

Please sign in to comment.