-
Notifications
You must be signed in to change notification settings - Fork 792
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
feat: pass tags and global chart variables when deploying an application #6427
Conversation
@@ -1171,3 +1176,27 @@ func (o *PromoteOptions) SearchForChart(filter string) (string, error) { | |||
o.HelmRepositoryURL = repoUrl | |||
return appName, nil | |||
} | |||
|
|||
func (o *PromoteOptions) GetEnvChartValues(targetNS string, env *v1.Environment) ([]string, []string) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exported method PromoteOptions.GetEnvChartValues should have comment or be unexported
@@ -1171,3 +1176,27 @@ func (o *PromoteOptions) SearchForChart(filter string) (string, error) { | |||
o.HelmRepositoryURL = repoUrl | |||
return appName, nil | |||
} | |||
|
|||
func (o *PromoteOptions) GetEnvChartValues(targetNS string, env *v1.Environment) ([]string, []string) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exported method PromoteOptions.GetEnvChartValues should have comment or be unexported
@@ -1171,3 +1176,27 @@ func (o *PromoteOptions) SearchForChart(filter string) (string, error) { | |||
o.HelmRepositoryURL = repoUrl | |||
return appName, nil | |||
} | |||
|
|||
func (o *PromoteOptions) GetEnvChartValues(targetNS string, env *v1.Environment) ([]string, []string) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exported method PromoteOptions.GetEnvChartValues should have comment or be unexported
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 Once the patch is verified, the new status will be reflected by the 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. |
/ok-to-test |
lint failure is two things - a case of import ordering, and some formatting. As a general rule, I’d recommend running We’re gradually working on getting the logs scrubbed well enough in the UI to be 99% sure of not exposing unmasked secrets there. Once we’ve (finally!) got that, we’ll be able to give contributors like yourself access to the UI. Sorry. =( |
And the integration failure is due to a bunch of compilation errors in |
Tags can be used to condition chart requirements. Global variables can be used in chart templates. `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.jx-ns-<namespace>=true` (ex: `tags.jx-ns-jx-production=true`) - `global.jx-<env-type>=true` (ex: `tags.jx-preview=true`) - `global.jx-env-<env>=true` (ex: `tags.jx-env-production=true`) - `global.jx-ns=<namespace>` (ex: `tags.jx-ns=jx-production`) - `global.jx-type-env=<env-type>` (ex: `tags.jx-type-env=preview`) - `global.jx-env=<env>` (ex: `tags.jx-env=production`) - `global.jx-preview-app=<preview-app>` (ex: `global.jx-preview-app=my-app`) - `global.jx-preview-pr=<preview-pr>` (ex: `global.jx-preview-pr=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.jx-ns-<namespace>=true` (ex: `tags.jx-ns-jx-production=true`) - `global.jx-ns=<namespace>` (ex: `tags.jx-ns=jx-production`) Additionally, `jx step helm install` now accepts the `--set-string` parameter, similarly to `helm install`. fixes jenkins-x#6312 Signed-off-by: Aurélien Lambert <aure@olli-ai.com>
Hi ! Thank you for you advice, it's much helpful. I also face problem with my modest computer: I had to reboot several times because I forgot to remove Anyway, I hope everything is fixed. |
Yeah, I always set my k8s context to an existing cluster and set my namespace to jx before running the full tests. That said, I should really fix the lingering non-integration tests that barf if you don’t have a cluster. |
/lgtm |
[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 |
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>
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>
In #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>
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>
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>
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>
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>
Submitter checklist
Description
This PR passes useful tags and global chart variables to helm when deploying an application.
Prior to this PR, the only way to check in which environment a chart was deployed was to read
.Release.Namespace
. It was impossible to use such conditions in chart requirements, and preview environment were hard to detect.Tags can be used to condition chart requirements.
Global variables can be used in chart templates.
jx promote
andjx 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.jx-ns-<namespace>=true
(ex:tags.jx-ns-jx-production=true
)global.jx-<env-type>=true
(ex:tags.jx-preview=true
)global.jx-env-<env>=true
(ex:tags.jx-env-production=true
)global.jx-ns=<namespace>
(ex:tags.jx-ns=jx-production
)global.jx-type-env=<env-type>
(ex:tags.jx-type-env=preview
)global.jx-env=<env>
(ex:tags.jx-env=production
)global.jx-preview-app=<preview-app>
preview only (ex:global.jx-preview-app=my-app
)global.jx-preview-pr=<preview-pr>
preview only (ex:global.jx-preview-pr=6
)jx step helm install
andjx step helm apply
now pass the following variables to helm:tags.jx-ns-<namespace>=true
(ex:tags.jx-ns-jx-production=true
)global.jx-ns-<namespace>=true
(ex:tags.jx-ns-jx-production=true
)global.jx-ns=<namespace>
(ex:tags.jx-ns=jx-production
)Additionally,
jx step helm install
now accepts the--set-string
parameter, similarly tohelm install
.Special notes for the reviewer(s)
I don't know where such feature can be documented.
Regular environments are currently deployed using
jx step helm apply --namespace <namespace>
, without any mention of which environment is actually being deployed. This unfortunately limits the variables I can pass when deploying a regular environment. Maybe another command or option would be useful.Which issue this PR fixes
fixes #6312