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

fix(ui): Disable GKE Metadata as default Fixes: #11247, fixes #11260 #11403

Open
wants to merge 1 commit into
base: master
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
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'
Loading