Skip to content

Instantly share code, notes, and snippets.

@mamash

mamash/index.ts Secret

Created July 11, 2019 16:49
Show Gist options
  • Save mamash/4f6d587392ddf096d3bdcd2d172be161 to your computer and use it in GitHub Desktop.
Save mamash/4f6d587392ddf096d3bdcd2d172be161 to your computer and use it in GitHub Desktop.
pulumi/helm/values
const kafka = new k8s.helm.v2.Chart('kafka', {
chart: 'cp-helm-charts',
repo: 'confluentinc',
version: '0.1.0',
namespace: 'backend',
values: {
'cp-kafka-connect': {
'enabled': true,
'image': 'some.private.repo/kafka-connect',
'imageTag': '5.0.0',
'imagePullSecrets': ['regcred'],
}
}
}
kubernetes:apps:Deployment (backend/kafka-cp-kafka-connect):
error: Plan apply failed: 1 error occurred:
* cannot restore struct from: string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment