#!/bin/bash # Copyright 2020 Gravitational, Inc. # # Licensed 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. # This script creates a new k8s Service Account and generates a kubeconfig with # its credentials. This Service Account has all the necessary permissions for # sveltos. The kubeconfig is written in the current directory. # # You must configure your local kubectl to point to the right k8s cluster and # have admin-level access. # # Note: all of the k8s resources are created in namespace # "projectsveltos". If you delete any of these objects, sveltos will stop working. # set -eu -o pipefail # Allow passing in common name and username in environment. If not provided, # use default. SVELTOS_SA=${SVELTOS_SA_NAME:-projectsveltos-sa} NAMESPACE=${SVELTOS_NAMESPACE:-projectsveltos} # Set OS specific values. if [[ "$OSTYPE" == "linux-gnu" ]]; then BASE64_DECODE_FLAG="-d" elif [[ "$OSTYPE" == "darwin"* ]]; then BASE64_DECODE_FLAG="-D" elif [[ "$OSTYPE" == "linux-musl" ]]; then BASE64_DECODE_FLAG="-d" else echo "Unknown OS ${OSTYPE}" exit 1 fi echo "Creating the Kubernetes Service Account with cluster-admin RBAC permissions." kubectl apply -f - < kubeconfig <