Shawn O'Dell
Shawn O'Dell
i have another use case with kubernetes resources specifically that i think is more relevant ```yaml apiVersion: apps/v1 kind: StatefulSet metadata: name: app spec: template: spec: affinity: podAffinity: preferredDuringSchedulingIgnoredDuringExecution: -...
can you simply use taint to recreate? `terraform taint fortios_json_generic_api.apikey`
I refactored to remove that licensed code. Some edge cases i considered is variables in GVK and keys. I have thought through this a bit and I think it is...
I created test cases for some additional field entries. I am not sure what is up with Github review requests. tagging @kensipe in case the review request isn't sufficient.
i am have @dgcaron 's exact problem. i have a read only account to perform terraform plan in CI and unless I give that account access to read secrets, I...
when building multiarch docker images, i typically would mount npmrc as a build secret. it would mae more sense to generate the npmrc once on the runner than to install...
I was able to move a large module to root using this ``` terraform state list | grep module.old_module | cut -d. -f 3- | xargs -I {} terraform state...
I also have strings that are not able to be sorted without breaking, ```yaml foo: "{{ lookup('env','FOO') | default('foo') }}" bar: "{{ lookup('env','BAR') | default('bar') }}" ``` ```yaml bar: {{...
@Silva-PT it works, make sure it is set in the request. also you can try 0. i use it for a number of things ``` script:pre-request { req.setMaxRedirects(0) } ```
i was unaware of the `kustomize edit` subcommand, nice: for an operator with multiple apis `kustomize edit add resource crds/*crd.yaml` no helper script needed @bzon