Alan Czajkowski

Results 24 comments of Alan Czajkowski

@XDavidT I have 2 teams, both want to name their application the same name "my-awesome-ui" Team A has 2 applications: - `my-awesome-backend-api` - `my-awesome-ui` Team B has 2 applications: -...

@hickeyma I'm having a similar issue with: ```shell $ helm install "${helm_name}" "${helm_chart}" --values values-${DEPLOY_ENV}.yaml --version "${DEPLOY_VERSION}" --replace --repo "${helm_repo_url}" --kube-context "${k8s_context}" --kubeconfig "${KUBECONFIG_PATH}" ``` - there are multiple values...

@hickeyma has this been resolved in a newer version of Helm?

@hickeyma I strongly disagree that bundling non-sensitive environment-specific values within a package is bad practice here's 2 scenarios: option 1: do not bundle environment-specific values inside package - you must...

I'm in a similar situation where I have no choice but to raw proxy all of the URLs: **pom.xml**: ``` https://internal-hostname/repository/proxy-raw-nist-nvd/feeds/json/cve/1.1/nvdcve-1.1-modified.json.gz https://internal-hostname/repository/proxy-raw-nist-nvd/feeds/json/cve/1.1/nvdcve-1.1-%d.json.gz https://internal-hostname/repository/proxy-raw-cisa/sites/default/files/feeds/known_exploited_vulnerabilities.json ... ``` how do I configure the...

@jeremylong @G-Ork do you have any recommendations on what I'm doing above?

@G-Ork my issue is that I need to connect to Nexus (all of those `https://internal-hostname/repository/proxy-raw...` URLs) and it is mandatory that access to my Nexus uses credentials to access those...