Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
viveklak committed Sep 30, 2021
1 parent f6215d3 commit 958b689
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/sdk/nodejs/examples/helm-release-namespace/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import * as pulumi from "@pulumi/pulumi";
import * as k8s from "@pulumi/kubernetes";


const namespace = new k8s.core.v1.Namespace("release-ns");

const alertManager = new k8s.helm.v3.Release("alertmanager", {
Expand All @@ -30,4 +29,6 @@ const alertManager = new k8s.helm.v3.Release("alertmanager", {
});

// Ensure we get the expected namespace for the stateful set.
export const alertManagerNamespace = k8s.apps.v1.StatefulSet.get("alertmanager-statefulset", pulumi.interpolate `${alertManager.status.namespace}/alertmanager`).metadata.namespace;
export const alertManagerNamespace = k8s.apps.v1.StatefulSet.get(
"alertmanager-statefulset",
pulumi.interpolate`${alertManager.status.namespace}/alertmanager`).metadata.namespace;

0 comments on commit 958b689

Please sign in to comment.