Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from apache:master #38

Merged
merged 1 commit into from
Jun 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions script/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,8 @@ release-nightly: clean codegen set-version build-resources build images images-p
release-helm:
./script/release_helm.sh

install-crc:
./script/install_crc.sh $(VERSION)
install-minishift:
./script/install_minishift.sh
install-minikube:
Expand Down
60 changes: 60 additions & 0 deletions script/install_crc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
#!/bin/sh

# 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.

# Exit on error
set -e

eval $(crc oc-env)
user=$(oc whoami)
if [ "$project" = "" ]; then
project=$(oc project -q)
else
oc new-project $project 2>/dev/null || true
fi

if [ "$#" -ne 1 ]; then
echo "usage: $0 version"
exit 1
fi

make images-dev

# Tag image
docker tag apache/camel-k:$1 default-route-openshift-image-registry.apps-crc.testing/$project/camel-k:$1
# Login to Docker registry
if [ $user = "kube:admin" ]; then
docker login -u kubeadmin -p $(oc whoami -t) default-route-openshift-image-registry.apps-crc.testing
else
docker login -u $(oc whoami) -p $(oc whoami -t) default-route-openshift-image-registry.apps-crc.testing
fi
# Push image to Docker registry
docker push default-route-openshift-image-registry.apps-crc.testing/$project/camel-k:$1

# Try setup with standard user
ret=0
cmd="./kamel install --olm=false --operator-image=image-registry.openshift-image-registry.svc:5000/$project/camel-k:$1"
eval "$cmd -n $project 2>/dev/null || export ret=\$?"

if [ $ret -ne 0 ]; then
# Login as admin if cluster setup fails with standard user
oc login -u kubeadmin
eval "$cmd --cluster-setup"
oc login -u $user
eval "$cmd -n $project"
fi

oc delete pod -l name=camel-k-operator -n $project || true