Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Ketan Umare committed Aug 25, 2020
1 parent c33ce2c commit e0968e9
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
4 changes: 2 additions & 2 deletions deployment/eks/flyte_generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -708,13 +708,13 @@ spec:
labels:
app: flyteconsole
app.kubernetes.io/name: flyteconsole
app.kubernetes.io/version: 0.8.0
app.kubernetes.io/version: 0.9.0
spec:
containers:
- envFrom:
- configMapRef:
name: flyte-console-config
image: docker.io/lyft/flyteconsole:v0.8.0
image: docker.io/lyft/flyteconsole:v0.9.0
name: flyteconsole
ports:
- containerPort: 8080
Expand Down
5 changes: 3 additions & 2 deletions deployment/sandbox/flyte_generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -683,6 +683,7 @@ apiVersion: v1
data:
BASE_URL: /console
CONFIG_DIR: /etc/flyte/config
DISABLE_AUTH: "true"
kind: ConfigMap
metadata:
name: flyte-console-config
Expand Down Expand Up @@ -1209,13 +1210,13 @@ spec:
labels:
app: flyteconsole
app.kubernetes.io/name: flyteconsole
app.kubernetes.io/version: 0.8.0
app.kubernetes.io/version: 0.9.0
spec:
containers:
- envFrom:
- configMapRef:
name: flyte-console-config
image: docker.io/lyft/flyteconsole:v0.8.0
image: docker.io/lyft/flyteconsole:v0.9.0
name: flyteconsole
ports:
- containerPort: 8080
Expand Down
4 changes: 2 additions & 2 deletions kustomize/base/console/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ spec:
labels:
app: flyteconsole
app.kubernetes.io/name: flyteconsole
app.kubernetes.io/version: 0.8.0
app.kubernetes.io/version: 0.9.0
spec:
volumes:
- name: shared-data
emptyDir: {}
containers:
- name: flyteconsole
image: docker.io/lyft/flyteconsole:v0.8.0
image: docker.io/lyft/flyteconsole:v0.9.0
# args: []
ports:
- containerPort: 8080
Expand Down
12 changes: 12 additions & 0 deletions kustomize/overlays/sandbox/console/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
kind: ConfigMap
apiVersion: v1
metadata:
name: flyte-console-config
namespace: flyte
data:
# This determines the base url used for all console links. It must match the route specified in ingress.yaml
BASE_URL: /console
CONFIG_DIR: /etc/flyte/config
DISABLE_AUTH: "true"
# IF Port-forwardin or if Admin and Console are running on different domainsg, then this should point to the host/port of Flyteadmin
# ADMIN_API_URL: http://localhost:8089
1 change: 1 addition & 0 deletions kustomize/overlays/sandbox/console/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ bases:

patches:
- console.yaml
- config.yaml

0 comments on commit e0968e9

Please sign in to comment.