Helm/Reloader: Difference between revisions
Jump to navigation
Jump to search
Created page with "{|class='wikitable' |valign='top' style='width:50%'| <syntaxhighlight lang='bash'> helm repo add stakater https://stakater.github.io/stakater-charts helm repo update && helm repo list kubectl config get-contexts </syntaxhighlight> |valign='top' style='width:50%'| |} ==Helm » Context== {|class='wikitable mw-collapsible' !scope='col' style='text-align:left' colspan='2'| Helm » Context |- |valign='top' style='width:50%'| <syntaxhighlight lang='bash'> export KUBECONFIG="$..." |
No edit summary |
||
| Line 6: | Line 6: | ||
kubectl config get-contexts | kubectl config get-contexts | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|valign='top' style='width:50%'| | |valign='top' style='width:50%'| | ||
|- | |||
|valign='top' colspan='2'| | |||
{|class='wikitable mw-collapsible mw-collapsed' | |||
!scope='col' style='text-align:left'| | |||
Diagram | |||
|- | |||
|valign='top' style='padding:6px'| | |||
<kroki lang="plantuml"> | |||
@startuml | |||
!theme plain | |||
left to right direction | |||
' Styling for Transparency and Layout | |||
skinparam backgroundColor transparent | |||
package "Input Sources" { | |||
[ExternalSecret] --> [Secret] : Creates | |||
[SealedSecret] --> [Secret] : Creates | |||
[Certificate] --> [Secret] : Creates | |||
} | |||
[Secret] --> [Reloader] : Watched by | |||
[ConfigMap] --> [Reloader] : Watched by | |||
package "Workloads" { | |||
[Reloader] --> [Deployment] : Triggers Rollout | |||
[Reloader] --> [DeploymentConfig] : Triggers Rollout | |||
[Reloader] --> [Daemonset] : Triggers Rollout | |||
[Reloader] --> [Statefulset] : Triggers Rollout | |||
[Reloader] --> [ArgoRollout] : Triggers Rollout | |||
[Reloader] --> [CronJob] : Triggers Job | |||
} | |||
[Reloader] --> [Notifications] : Sends Notification | |||
@enduml | |||
</kroki> | |||
|} | |||
|} | |} | ||
Revision as of 02:24, 25 January 2026
helm repo add stakater https://stakater.github.io/stakater-charts
helm repo update && helm repo list
kubectl config get-contexts
|
|||
| |||
Helm » Context
|
Helm » Context | |
|---|---|
export KUBECONFIG="${HOME}/.kube/aws-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/lke-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/config"
|
|
References
|
References | ||
|---|---|---|