-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #941 from relyt0925/ignition-server-2
ensure all components respect the restart annotation.
- v0.1.55
- v0.1.54
- v0.1.53
- v0.1.52
- v0.1.51
- v0.1.50
- v0.1.49
- v0.1.48
- v0.1.47
- v0.1.46
- v0.1.45
- v0.1.44
- v0.1.43
- v0.1.42
- v0.1.41
- v0.1.40
- v0.1.39
- v0.1.38
- v0.1.37
- v0.1.36
- v0.1.35
- v0.1.34
- v0.1.33
- v0.1.32
- v0.1.31
- v0.1.30
- v0.1.29
- v0.1.28
- v0.1.27
- v0.1.26
- v0.1.25
- v0.1.24
- v0.1.23
- v0.1.22
- v0.1.21
- v0.1.20
- v0.1.19
- v0.1.18
- v0.1.17
- v0.1.16
- v0.1.15
- v0.1.14
- v0.1.13
- v0.1.12
- v0.1.11
- v0.1.10
- v0.1.9
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- 2.0.0-20220406093220
- 2.0.0-20220323110745
- 2.0.0-20220319120001
- 2.0.0-20220317155435
Showing
3 changed files
with
48 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Restart Control Plane Components with Restart Annotation | ||
|
||
The Restart Annotation allows a user to trigger a rolling restart of all control-plane components in the management cluster. This is helpful in certain situations like when you want to force a reload of all the certificates components are using in the control plane. It is also a helpful operational debug step to see if a restart resolves any abnormalities being experienced in the control plane components. | ||
|
||
To utilize: the restart annotation is passed to the Hostedcluster object | ||
|
||
``` | ||
apiVersion: hypershift.openshift.io/v1alpha1 | ||
kind: HostedCluster | ||
metadata: | ||
name: example | ||
namespace: master | ||
annotations: | ||
hypershift.openshift.io/restart-date: "2022-01-31T12:56:54+0000" | ||
.... | ||
``` | ||
|
||
When that annotation is passed: every component in the clusters control plane will proceed to do a rolling restart. This will occur anytime a new value is passed to the restart date annotation. | ||
|
||
The list of components restarted are listed below: | ||
- catalog-operator | ||
- certified-operators-catalog | ||
- cluster-api | ||
- cluster-autoscaler | ||
- cluster-policy-controller | ||
- cluster-version-operator | ||
- community-operators-catalog | ||
- control-plane-operator | ||
- hosted-cluster-config-operator | ||
- ignition-server | ||
- ingress-operator | ||
- konnectivity-agent | ||
- konnectivity-server | ||
- kube-apiserver | ||
- kube-controller-manager | ||
- kube-scheduler | ||
- machine-approver | ||
- oauth-openshift | ||
- olm-operator | ||
- openshift-apiserver | ||
- openshift-controller-manager | ||
- openshift-oauth-apiserver | ||
- packageserver | ||
- redhat-marketplace-catalog | ||
- redhat-operators-catalog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters