Switch Fission's storage over to the new CustomResourceDefinitions, from the deprecated ThirdPartyResources. This allows us to be compatible with Kubernets 1.8 and onwards. This also adds a CLI tool for dumping state from an old fission version and restoring state into new CRDs. The storage service is unaffected by this change.
26 lines
714 B
Bash
Executable File
26 lines
714 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
if [ ! -f ${KUBECONFIG} ]
|
|
then
|
|
unset KUBECONFIG
|
|
else
|
|
K="kubectl --kubeconfig $KUBECONFIG --namespace default"
|
|
if $K get configmap ok-to-destroy
|
|
then
|
|
$K delete functions --all
|
|
$K delete environments --all
|
|
$K delete httptriggers --all
|
|
$K delete kuberneteswatchtriggers --all
|
|
$K delete messagequeuetriggers --all
|
|
$K delete packages --all
|
|
$K delete timetriggers --all
|
|
fi
|
|
fi
|
|
|
|
go test -v -i $(go list ./... | grep -v '/vendor/' | grep -v 'examples/go')
|
|
|
|
# The poolmgr unit test only works with NodePort-type services for
|
|
# now. So disable it for our travis ci tests.
|
|
go test -v $(go list ./... | grep -v '/vendor/' | grep -v 'examples/go' | grep -v poolmgr)
|