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

fix: Turns globals.jx-* template variables into valid variable names #6682

Merged
merged 1 commit into from
Feb 4, 2020

Conversation

aure-olli
Copy link

Submitter checklist

  • Change is code complete and matches issue description.
  • Change is covered by existing or new tests.

Description

In #6427 was added template variables to help templating. Unfortunately, template variables names must be valid go variable names to be used. Global variables are now camel-cased. Tags are still snake-cased, accordingly to helm example (https://helm.sh/docs/topics/charts/#tags-and-condition-fields-in-dependencies).

jx promote and jx preview now pass the following variables to helm:

  • tags.jx-ns-<namespace>=true (ex: tags.jx-ns-jx-production=true)
  • tags.jx-<env-type>=true (ex: tags.jx-preview=true)
  • tags.jx-env-<env>=true (ex: tags.jx-env-production=true)
  • global.jxNs<namespace>=true (ex: global.jxNsJxProduction=true)
  • global.jx<env-type>=true (ex: global.jxPreview=true)
  • global.jxEnv<env>=true (ex: global.jxEnvProduction=true)
  • global.jxNs=<namespace> (ex: global.jxNs=jx-production)
  • global.jxTypeEnv=<env-type> (ex: global.jxTypeEnv=preview)
  • global.jxEnv=<env> (ex: global.jxEnv=production)
  • global.jxPreviewApp=<preview-app> (ex: global.jxPreviewApp=my-app)
  • global.jxPreviewPr=<preview-pr> (ex: global.jxPreviewPr=6)

jx step helm install and jx step helm apply now pass the following variables to helm:

  • tags.jx-ns-<namespace>=true (ex: tags.jx-ns-jx-production=true)
  • global.jxNs<namespace>=true (ex: global.jxNsJxProduction=true)
  • global.jxNs=<namespace> (ex: global.jxNs=jx-production)

In jenkins-x#6427 was added template variables to help templating. Unfortunately, template variables names must be valid go variable names to be used. Tags are still snake-cased.

`jx promote` and `jx preview` now pass the following variables to helm:
- `tags.jx-ns-<namespace>=true` (ex: `tags.jx-ns-jx-production=true`)
- `tags.jx-<env-type>=true` (ex: `tags.jx-preview=true`)
- `tags.jx-env-<env>=true` (ex: `tags.jx-env-production=true`)
- `global.jxNs<namespace>=true` (ex: `global.jxNsJxProduction=true`)
- `global.jx<env-type>=true` (ex: `global.jxPreview=true`)
- `global.jxEnv<env>=true` (ex: `global.jxEnvProduction=true`)
- `global.jxNs=<namespace>` (ex: `global.jxNs=jx-production`)
- `global.jxTypeEnv=<env-type>` (ex: `global.jxTypeEnv=preview`)
- `global.jxEnv=<env>` (ex: `global.jxEnv=production`)
- `global.jxPreviewApp=<preview-app>` (ex: `global.jxPreviewApp=my-app`)
- `global.jxPreviewPr=<preview-pr>` (ex: `global.jxPreviewPr=6`)

`jx step helm install` and `jx step helm apply` now pass the following variables to helm:
- `tags.jx-ns-<namespace>=true` (ex: `tags.jx-ns-jx-production=true`)
- `global.jxNs<namespace>=true` (ex: `global.jxNsJxProduction=true`)
- `global.jxNs=<namespace>` (ex: `global.jxNs=jx-production`)

Signed-off-by: Aurélien Lambert <aure@olli-ai.com>
@jenkins-x-bot
Copy link
Contributor

Hi @aure-olli. Thanks for your PR.

I'm waiting for a jenkins-x member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@abayer
Copy link
Contributor

abayer commented Feb 4, 2020

/ok-to-test
/lgtm

@jenkins-x-bot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: abayer

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@jenkins-x-bot jenkins-x-bot merged commit dce9fc7 into jenkins-x:master Feb 4, 2020
aure-olli added a commit to olli-ai/jx that referenced this pull request Feb 6, 2020
Complementary to jenkins-x#6427 and jenkins-x#6682 all calls to `helm lint` (including `jx step helm release`) also pass some variables
- `tags.jx-lint=true`
- `global.jxLint=true`
- `global.jxTypeEnv=lint`

This avoids having `helm lint` errors when the templates are looking for variables like `.Values.global.jxNs` due to `global` being `nil`

Signed-off-by: Aurélien Lambert <aure@olli-ai.com>
jenkins-x-bot pushed a commit that referenced this pull request Feb 11, 2020
Complementary to #6427 and #6682 all calls to `helm lint` (including `jx step helm release`) also pass some variables
- `tags.jx-lint=true`
- `global.jxLint=true`
- `global.jxTypeEnv=lint`

This avoids having `helm lint` errors when the templates are looking for variables like `.Values.global.jxNs` due to `global` being `nil`

Signed-off-by: Aurélien Lambert <aure@olli-ai.com>
daveconde pushed a commit to daveconde/jx that referenced this pull request Apr 7, 2020
Complementary to jenkins-x#6427 and jenkins-x#6682 all calls to `helm lint` (including `jx step helm release`) also pass some variables
- `tags.jx-lint=true`
- `global.jxLint=true`
- `global.jxTypeEnv=lint`

This avoids having `helm lint` errors when the templates are looking for variables like `.Values.global.jxNs` due to `global` being `nil`

Signed-off-by: Aurélien Lambert <aure@olli-ai.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants