Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add namespace override #3038

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

joshRooz
Copy link

@joshRooz joshRooz commented Oct 4, 2023

Changes proposed in this PR:
Add consul.namespace to helpers, allowing Consul resources to be deployed to a namespace other than .Release.Namespace by setting the global.namespace value.

Derived from #3016 and credit to @0011blindmice.


How I've tested this PR:
Checked out 1.2.2 tag and cherry-picked the PR commits for helm package. Tested in KinD with no global.namespace specified, and with the config shown below.

Helm Values
release_ns=helm   # kube namespace for helm release 
deploy_ns=consul  # kube namespace for consul resources 
helm install consul ./consul-1.2.2.tgz \
  --namespace $release_ns \
  --create-namespace \
  --set global.name=consul \
  --set global.namespace=$deploy_ns \
  --set global.peering.enabled=true \
  --set global.adminPartitions.enabled=true \
  --set global.image=hashicorp/consul-enterprise:1.16.2-ent \
  --set global.datacenter=${deploy_dc:-dc1} \
  --set global.gossipEncryption.autoGenerate=true \
  --set global.tls.enabled=true \
  --set global.enableConsulNamespaces=true \
  --set global.acls.manageSystemACLs=true \
  --set global.enterpriseLicense.secretName=consul-license \
  --set global.enterpriseLicense.secretKey=consul.hclic \
  --set server.replicas=3 \
  --set server.resources.limits.memory=512Mi \
  --set server.exposeService.enabled=false \
  --set connectInject.default=true \
  --set connectInject.apiGateway.managedGatewayClass.serviceType=ClusterIP \
  --set connectInject.cni.enabled=true \
  --set connectInject.cni.logLevel=trace \
  --set connectInject.cni.namespace=kube-system \
  --set connectInject.k8sDenyNamespaces[0]=sync \
  --set meshGateway.enabled=true \
  --set meshGateway.service.type=ClusterIP \
  --set ingressGateways.enabled=true \
  --set terminatingGateways.enabled=true

To verify backwards compatibility, the same values from above were supplied to helm install consul hashicorp/consul --version 1.2.2 .... Subsequently running helm diff upgrade consul ./consul-1.2.2.tgz ..., with the same values, returned no changes.


How I expect reviewers to test this PR:

  • Not all componentry was tested/validated. The PR is small change but cascading impact across the whole chart, so edge case validation comes to mind.
  • Upgrading and changing global.namespace not in scope, but remains consistent with current expectation that .Release.Namespace does not change after initial installation.

Checklist:

@thisisnotashwin thisisnotashwin added pr/no-changelog PR does not need a corresponding .changelog entry pr/no-backport signals that a PR will not contain a backport label backport/1.0.x backport/1.1.x Backport to release/1.1.x branch backport/1.2.x This release branch is no longer active. and removed pr/no-backport signals that a PR will not contain a backport label labels Oct 12, 2023
Copy link
Contributor

@thisisnotashwin thisisnotashwin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work here! thanks so much for the contribution.

@david-yu david-yu added backport/1.3.x This release branch is no longer active. and removed backport/1.0.x labels Nov 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport/1.1.x Backport to release/1.1.x branch backport/1.2.x This release branch is no longer active. backport/1.3.x This release branch is no longer active. pr/no-changelog PR does not need a corresponding .changelog entry
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants