
Scripts and files to build initial zuul gates for the hostconfig repository. Added cronjob feature - Executing the HostConfig CRs based on the reconcile-period. This features also adds support for reconcile execution based on number of iterations and reconcile-interval specified. Update the docs with the Node-resiliency observations tested with hostconfig-operator pod. Change-Id: Ic0a2f110d709236f9eb23756e3776d4104dd832f
37 lines
1.8 KiB
Bash
Executable File
37 lines
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
set -xe
|
|
|
|
# Labeling kubernetes nodes with role
|
|
kubectl label node hostconfig-control-plane kubernetes.io/role=master
|
|
kubectl label node hostconfig-control-plane2 kubernetes.io/role=master
|
|
kubectl label node hostconfig-control-plane3 kubernetes.io/role=master
|
|
kubectl label node hostconfig-worker kubernetes.io/role=worker
|
|
kubectl label node hostconfig-worker2 kubernetes.io/role=worker
|
|
|
|
# Labeling kubernetes nodes with region
|
|
kubectl label node hostconfig-control-plane topology.kubernetes.io/region=us-east
|
|
kubectl label node hostconfig-control-plane2 topology.kubernetes.io/region=us-west
|
|
kubectl label node hostconfig-control-plane3 topology.kubernetes.io/region=us-east
|
|
kubectl label node hostconfig-worker topology.kubernetes.io/region=us-east
|
|
kubectl label node hostconfig-worker2 topology.kubernetes.io/region=us-west
|
|
|
|
# Labeling kubernetes nodes with zone
|
|
kubectl label node hostconfig-control-plane topology.kubernetes.io/zone=us-east-1a
|
|
kubectl label node hostconfig-control-plane2 topology.kubernetes.io/zone=us-west-1a
|
|
kubectl label node hostconfig-control-plane3 topology.kubernetes.io/zone=us-east-1b
|
|
kubectl label node hostconfig-worker topology.kubernetes.io/zone=us-east-1a
|
|
kubectl label node hostconfig-worker2 topology.kubernetes.io/zone=us-west-1a
|