Re-enable participant links & checks after first build of i-release docs
[nonrtric/plt/rappmanager.git] / scripts / install / install-base.sh
1 #!/bin/bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2023 Nordix Foundation. All rights reserved.
5 #  Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved.
6 #  ========================================================================
7 #  Licensed under the Apache License, Version 2.0 (the "License");
8 #  you may not use this file except in compliance with the License.
9 #  You may obtain a copy of the License at
10 #
11 #       http://www.apache.org/licenses/LICENSE-2.0
12 #
13 #  Unless required by applicable law or agreed to in writing, software
14 #  distributed under the License is distributed on an "AS IS" BASIS,
15 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 #  See the License for the specific language governing permissions and
17 #  limitations under the License.
18 #  ============LICENSE_END=================================================
19 #
20
21 echo "######### Installing base components #########"
22
23 echo "Installing helm..."
24 snap install helm --classic
25 HELM_VERSION=$(helm version --short)
26 echo "Helm version $HELM_VERSION installed."
27
28 echo "Installing chartmuseum..."
29 curl https://raw.githubusercontent.com/helm/chartmuseum/main/scripts/get-chartmuseum | bash
30 CHART_MUSEUM_VERSION=$(helm version --short)
31 echo "Chartmuseum version $CHART_MUSEUM_VERSION is installed."
32
33 echo "Install yq..."
34 snap install yq
35
36 echo "Creating kubernetes namespace..."
37 kubectl create ns kserve-test
38