Skip to content

Commit

Permalink
fix(ui): desabled GKE metadata by default. Fixes kubeflow#11247 and k…
Browse files Browse the repository at this point in the history
…ubeflow#11260

Signed-off-by: Dave Canton <[email protected]>
  • Loading branch information
dvcanton committed Nov 23, 2024
1 parent 2e05b3d commit 2c494c6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/server/app.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ describe('UIServer apis', () => {
? Promise.resolve({ ok: true, text: () => Promise.resolve('test-cluster') })
: Promise.reject('Unexpected request'),
);
app = new UIServer(loadConfigs(argv, {}));
app = new UIServer(loadConfigs(argv, { DISABLE_GKE_METADATA: 'false' }));

const request = requests(app.start());
request
Expand Down Expand Up @@ -225,7 +225,7 @@ describe('UIServer apis', () => {
? Promise.resolve({ ok: true, text: () => Promise.resolve('test-project') })
: Promise.reject('Unexpected request'),
);
app = new UIServer(loadConfigs(argv, {}));
app = new UIServer(loadConfigs(argv, { DISABLE_GKE_METADATA: 'false' }));

const request = requests(app.start());
request.get('/system/project-id').expect(200, 'test-project', done);
Expand Down
2 changes: 1 addition & 1 deletion frontend/server/configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export function loadConfigs(argv: string[], env: ProcessEnv): UIConfigs {
/** The main container name of a pod where logs are retrieved */
POD_LOG_CONTAINER_NAME = 'main',
/** Disables GKE metadata endpoint. */
DISABLE_GKE_METADATA = 'false',
DISABLE_GKE_METADATA = 'true',
/** Enable authorization checks for multi user mode. */
ENABLE_AUTHZ = 'false',
/** Deployment type. */
Expand Down
14 changes: 14 additions & 0 deletions manifests/kustomize/env/gcp/gcp-configurations-patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,17 @@ spec:
configMapKeyRef:
name: pipeline-install-config
key: gcsProjectId

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ml-pipeline-ui
spec:
template:
spec:
containers:
- name: ml-pipeline-ui
env:
- name: DISABLE_GKE_METADATA
value: 'false'

0 comments on commit 2c494c6

Please sign in to comment.