mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-02-14 18:29:52 +00:00
- remove Helm v2 and Tiller - update Helm v3 to 3.5.0 - rename scripts dir to test Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
21 lines
325 B
Bash
Executable File
21 lines
325 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd -P)
|
|
|
|
# run the build
|
|
$SCRIPT_DIR/build.sh
|
|
|
|
# create the kind cluster
|
|
kind create cluster || true
|
|
|
|
# load the docker image
|
|
kind load docker-image test/podinfo:latest
|
|
|
|
# run the deploy
|
|
$SCRIPT_DIR/deploy.sh
|
|
|
|
# run the tests
|
|
$SCRIPT_DIR/test.sh
|