Helm/Jenkins: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 2: Line 2:
  helm repo update
  helm repo update
  helm repo list
  helm repo list
==Install==
<syntaxhighlight lang="properties">
cat <<EOF | helm upgrade --install -n jenkins jenkins jenkins/jenkins -f -
controller:
  jenkinsUrl: jenkins.k8s.local
EOF
</syntaxhighlight>
==Uninstall==
<syntaxhighlight lang="properties">
helm uninstall jenkins
</syntaxhighlight>
==Playground==
{|
| valign="top" |
<syntaxhighlight lang="bash">
helm upgrade --install -f values.yaml myjenkins jenkins/jenkins
helm upgrade --install myjenkins jenkins/jenkins
helm show values jenkins/jenkins
</syntaxhighlight>
| valign="top" |
| valign="top" |
|-
| colspan="3" |
----
|-
| valign="top" |
| valign="top" |
| valign="top" |
|}


==References==
==References==
Line 7: Line 45:
| valign="top" |
| valign="top" |
* [https://stackoverflow.com/questions/75596795/ Helm » Pass YAML/JSON using <code>stdin</code>]
* [https://stackoverflow.com/questions/75596795/ Helm » Pass YAML/JSON using <code>stdin</code>]
* [https://helm.sh/docs/helm/helm_repo_remove/ Helm » Repo » Remove]
* [https://octopus.com/blog/jenkins-helm-install-guide Helm » Jenkins » Install]
* [https://helm.sh/docs/chart_template_guide/values_files/ Helm » Values Files]
* [https://artifacthub.io/packages/helm/jenkinsci/jenkins Helm » Jenkins]
* [https://helm.sh/docs/helm/helm_upgrade/ Helm » Upgrade]
* [https://helm.sh/docs/helm/helm_rollback/ Helm » Rollback]
* [https://helm.sh/docs/helm/helm_history/ Helm » History]
* [https://helm.sh/docs/helm/helm_install/ Helm » Install]
* [https://helm.sh/docs/helm/helm/ Helm » Env]
* [https://helm.sh/docs/helm/helm_pull/ Helm » Pull]
* [[Helm]]
* [[Helm]]


| valign="top" |
| valign="top" |
* [https://github.com/sonatype-nexus-community/helm-nexus-push Helm » Push » Nexus]
* [https://artifacthub.io/packages/helm/jenkinsci/jenkins Helm » Jenkins]


| valign="top" |
| valign="top" |

Revision as of 23:29, 3 June 2024

helm repo add jenkins https://charts.jenkins.io
helm repo update
helm repo list

Install

cat <<EOF | helm upgrade --install -n jenkins jenkins jenkins/jenkins -f -
controller:
  jenkinsUrl: jenkins.k8s.local
EOF

Uninstall

helm uninstall jenkins

Playground

helm upgrade --install -f values.yaml myjenkins jenkins/jenkins
helm upgrade --install myjenkins jenkins/jenkins
helm show values jenkins/jenkins

References