-
Notifications
You must be signed in to change notification settings - Fork 53
Closed
Description
Looks like the values are not getting overidden even when i use setRaw(yamlString). Below is the code. Here I am trying to override the image repository.
Code:
final Map<String, Object> yaml = new LinkedHashMap<>();
yaml.put("image.repository", "registry/test/my-server");
final String yamlString = new Yaml().dump(yaml);
requestBuilder.getValuesBuilder().setRaw(yamlString);
final Future<InstallReleaseResponse> releaseFuture = releaseManager.install(requestBuilder, chart);
This (override) works fine from the helm command line.
Currently I am using microbean-helm version 2.8.2.1.1.1 - os.detected.classifier=osx-x86_64
Reactions are currently unavailable