CAPZ v0.5.2 Uplift - Reference Public Site

This patchset provides the manifests for deploying a Target cluster on
Azure cloud platform, exposing the API server to the public Internet.

Relates-to: #600
Change-Id: I34789918b4be721fc518c033a82a4f8bce117494
This commit is contained in:
Shiba, Sidney
2021-10-01 16:34:51 -06:00
parent 6add400666
commit 4e12ce315f
38 changed files with 457 additions and 161 deletions

View File

@@ -13,3 +13,4 @@ resources:
- wait_label_node
- check_ingress_ctrl
- merge_kubeconfig
- wait_machines_ready

View File

@@ -0,0 +1,18 @@
#!/bin/sh
# 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
# Wait until all Machines reach the Ready condition or timeout
kubectl --context $KCTL_CONTEXT wait --for=condition=ready --timeout=300s --all machines -A

View File

@@ -0,0 +1,6 @@
configMapGenerator:
- name: wait_machines_ready
options:
disableNameSuffixHash: true
files:
- script=kubectl_wait_machines.sh