Skip to content

Commit

Permalink
Merge pull request #639 from slim0/fix-missing-backslash-on-helper-co…
Browse files Browse the repository at this point in the history
…mmand-for-setting-kubernetes-context

Fix missing backslash on helper command for setting kubernetes context
  • Loading branch information
garronej authored Oct 23, 2023
2 parents 22e303f + 514593f commit 744a3d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/core/usecases/k8sCredentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export const selectors = (() => {
` --auth-provider-arg=refresh-token=${state.refreshToken} \\`,
` --auth-provider-arg=id-token=${state.idToken}`,
``,
`kubectl config set-context ${host}`,
`kubectl config set-context ${host} \\`,
` --user=${state.user} \\`,
` --cluster=${host} \\`,
` --namespace=${namespace}`,
Expand Down

0 comments on commit 744a3d2

Please sign in to comment.