Skip to content

Commit

Permalink
fix(infra): secret namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Urban committed Sep 23, 2023
1 parent 2f5bd8a commit 3d9e07f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deploy/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@ const ingressAnnotation = stackName === "prod" ? {} : basicAuthAnnotation
//Create Gitlab Secret
const pullSecret = process.env.CI_PULL_SECRET!
const secret = createGitlabSecret("pulumi", pullSecret, "gitlab-pull-secret", webServerNs)

const surrealSecret = new Secret(resourceName, {
metadata: {
name: resourceName,
namespace: webServerNs.metadata.namespace
namespace: resourceName
},
stringData: {
"surreal-user": config.getSecret("surreal-user")!,
Expand Down

0 comments on commit 3d9e07f

Please sign in to comment.