Asbjørn Apeland

Results 15 comments of Asbjørn Apeland

That makes sense to me. The point I am interested in is, in your example, what happens if I type `c`? If I press `Return`, I would want empty output,...

That is true, that's what happens in dmenu. I would personally like if it behaved differently. Is that a possibility, or do you think it will not happen?

The code for the default `imagePullSecret` output is here: https://github.com/helm/helm/blob/9fe4f2ea72ef795d250f716c3d4146127c1f8040/pkg/chartutil/create.go#L300-L303 And for the default `securityContext` output it's here: https://github.com/helm/helm/blob/9fe4f2ea72ef795d250f716c3d4146127c1f8040/pkg/chartutil/create.go#L305-L306

I'm considering to change the `securityContext` code to the same as `imagePullSecrets` in a template I'm developing: ``` {{- with .Values.securityContext }} securityContext: {{- toYaml . | nindent 8 }}...

Having the same issue at Fedora, everything is super dark. ``` $ dnf list installed | grep libtxc libtxc_dxtn.i686 1:1.0.1-1.gitef072983.fc23 libtxc_dxtn.x86_64 1:1.0.1-1.gitef072983.fc23 ```

One idea could be to use a subshell: ``` $ (cd overlays/dev && kustomize edit set image nginx:1.19.2) ``` Then you can be sure `cd` is temporary.

Isn't it a matter of simple vs easy? Using `cd` is simple, while controlling directory inside `kustomize` means more lines of code; more complexity. Like in these examples from `man...

Although, while doing research for my previous reply, I was a bit surprised that `kustomize build` can set the [kustomization root](https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#kustomization-root) but `kustomize edit` can't. Maybe it would make sense...

Hi, Ben, thanks for the thorough review! I started replying to each question first, but then I realized that I think you have understood what I meant, you just are...

That looks great! I'll try to implement it, I like everything except the gray whitespace area above the code, maybe the button can "float" over to the right instead of...