2020-09-16 15:39:02 -05:00
|
|
|
#!/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
|
|
|
|
|
|
|
|
#Default wait timeout is 600 seconds
|
|
|
|
export TIMEOUT=${TIMEOUT:-600s}
|
|
|
|
export KUBECONFIG=${KUBECONFIG:-"$HOME/.airship/kubeconfig"}
|
|
|
|
export KUBECONFIG_TARGET_CONTEXT=${KUBECONFIG_TARGET_CONTEXT:-"target-cluster"}
|
|
|
|
export TARGET_IP=${TARGET_IP:-"10.23.25.102"}
|
|
|
|
export TARGET_PORT=${TARGET_PORT:-"30000"}
|
|
|
|
|
|
|
|
echo "Deploy workload"
|
2020-10-08 13:37:27 -05:00
|
|
|
airshipctl phase run workload-target --debug
|
2020-09-16 15:39:02 -05:00
|
|
|
|
|
|
|
echo "Ensure we can reach ingress controller default backend"
|
2020-10-01 15:41:12 +00:00
|
|
|
if [ "404" != "$(curl --head --write-out '%{http_code}' --silent --output /dev/null $TARGET_IP:$TARGET_PORT/should-404)" ]; then
|
2020-09-16 15:39:02 -05:00
|
|
|
echo -e "\nFailed to reach ingress controller default backend."
|
2020-12-07 15:26:16 -06:00
|
|
|
|
|
|
|
kubectl --kubeconfig $KUBECONFIG --context $KUBECONFIG_TARGET_CONTEXT get all -n flux-system
|
|
|
|
kubectl --kubeconfig $KUBECONFIG --context $KUBECONFIG_TARGET_CONTEXT logs -n flux-system -l app=helm-controller
|
|
|
|
kubectl --kubeconfig $KUBECONFIG --context $KUBECONFIG_TARGET_CONTEXT get hr --all-namespaces -o yaml
|
|
|
|
|
2020-09-16 15:39:02 -05:00
|
|
|
exit 1
|
|
|
|
fi
|