Marcel B
Marcel B
> @myspotontheweb For implementation I suggest sticking with kustomize and having it reference Helm. [This is natively supported in Kustomize](https://github.com/kubernetes-sigs/kustomize/blob/master/examples/chart.md). [See this comment](https://github.com/argoproj/argo-cd/issues/2789#issuecomment-960271294) for how to enable it with Argo...
Well I only did classes once and I am an ops guy from origin not a dev guy, but will give it a go if i get around to it...
I created a "composite" action in our organization that is a copy of this action. I added this: ``` set -u if [[ -z "${{ inputs.config }}" ]]; then CONFIG=""...
looks hardcoded at the moment: ``` public const string CliVaultTokenCacheFile = @"$HOME\.vault-token"; public const string VaultAddressCacheFile = @"$HOME\.vault-address"; public const string VaultProfilesDir = @"$HOME\.vault-profiles"; ``` maybe an option to use...
``` public static readonly string CliVaultTokenCacheFile = Path.Combine(@"$HOME",".vault-token"); public static readonly string VaultAddressCacheFile = Path.Combine(@"$HOME",".vault-address"); public static readonly string VaultProfilesDir = Path.Combine(@"$HOME",".vault-profiles"); ``` I can't test it unfortunately, since it...
oh the expansion of the $HOME isn't the issue .. its the \.vault-address at the end. (the backslash) But like i said my c# is newb level. So i haven't...