Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bartlett-ops/289aea2959f1097e0ff76e9044eb9319 to your computer and use it in GitHub Desktop.
Save bartlett-ops/289aea2959f1097e0ff76e9044eb9319 to your computer and use it in GitHub Desktop.
const cluster = new DataAwsEksCluster(stack, `data-aws-eks-cluster`,
{
name: upstreamData.cluster.name,
provider: stack.awsProvider,
}
)
const dataNamespace = new DataKubernetesNamespace(stack, 'data-namespace', {
metadata: [
{
name: 'kube-system'
}
]
})
const namespaceName = dataNamespace.metadata[0].name
console.log(namespaceName)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment