Helm/Jenkins: Difference between revisions
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:// | * [https://octopus.com/blog/jenkins-helm-install-guide Helm » Jenkins » Install] | ||
* [https://artifacthub.io/packages/helm/jenkinsci/jenkins Helm » Jenkins] | |||
* [https:// | |||
* [[Helm]] | * [[Helm]] | ||
| valign="top" | | | valign="top" | | ||
| valign="top" | | | valign="top" | |
Revision as of 22: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
| ||
| ||