cool-egg-852
07/18/2019, 11:42 PMhelm update
and helm repo add
and all that all the time?white-balloon-205
cool-egg-852
07/18/2019, 11:43 PMError: chart "memcached" matching version "2.9.0" not found in stable index. (try 'helm repo update'). No chart version found for memcached-2.9.0
for exampleerror: Error: Command failed: helm fetch stable/memcached --untar --version 2.9.0 --destination /tmp/tmp-2634JcP47N5dmFKY
white-balloon-205
cool-egg-852
07/19/2019, 8:08 PMexport const memcached = new k8s.helm.v2.Chart('memcached', {
repo: 'stable',
chart: 'memcached',
version: '2.9.0',
namespace: namespace.metadata.name,
values: {
fullNameOverride: 'memcached',
memcached: {
maxItemMemory: 4096,
extraArgs: ['-c 20240', '-I 1m', '-t 48']
},
imagePullPolicy: 'IfNotPresent'
},
transformations: [
(resource: any) => {
if (resource != null && resource.metadata != null) {
resource.metadata.namespace = namespace.metadata.name;
}
}
]
});