-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle OCP3 in e2e kustomize install tests
* OCP3 has obsolete CRD API, which is handled in the golang binary but not in the kustomize install * Adds plumbing to the kustomize install to error out gracefully if the CRD API is the obsolete version * Adds env var to e2e tests to skip tests if cluster target is OCP3 * Modifies openshift github workflow to move the test-quarkus-native to executing as cluster-admin
- Loading branch information
1 parent
37cba2f
commit c3b9c9b
Showing
8 changed files
with
148 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../script/check_crd_api_support.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#!/bin/bash | ||
|
||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You 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. | ||
|
||
is_binary_available() { | ||
|
||
client="${1}" | ||
|
||
# Check path first if it already exists | ||
set +e | ||
which "${client}" &>/dev/null | ||
if [ $? -eq 0 ]; then | ||
set -e | ||
echo "OK" | ||
return | ||
fi | ||
|
||
set -e | ||
|
||
# Error, no oc found | ||
echo "ERROR: No '${client}' binary found in path." | ||
} | ||
|
||
location=$(dirname $0) | ||
rootdir=$location/../ | ||
|
||
cd $rootdir | ||
|
||
client="oc" | ||
hasclient=$(is_binary_available "${client}") | ||
if [ "${hasclient}" != "OK" ]; then | ||
client="kubectl" | ||
hasclient=$(is_binary_available "${client}") | ||
if [ "${hasclient}" != "OK" ]; then | ||
echo "ERROR: No kube client installed." | ||
exit 1 | ||
fi | ||
fi | ||
|
||
crd_version=$("${client}" explain customresourcedefinitions | grep VERSION | awk '{print $2}') | ||
api="apiextensions.k8s.io" | ||
|
||
if [ "${crd_version}" == "${api}/v1beta1" ]; then | ||
echo "ERROR: CRD API version is too old to install camel-k in this way. Try using the client CLI app, which is able to convert the APIs." | ||
elif [ "${crd_version}" != "${api}/v1" ]; then | ||
echo "ERROR: CRD API version '${crd_version}' is not supported." | ||
else | ||
echo "OK" | ||
fi |