#!/usr/bin/env bash # Copyright 2022 The Kubernetes Authors. # # 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. set -o errexit set -o nounset set -o pipefail thisyear=`date +"%Y"` mkdir -p release/ # Make clean files with boilerplate cat hack/boilerplate/boilerplate.sh.txt > release/experimental-install.yaml sed -i "s/YEAR/$thisyear/g" release/experimental-install.yaml cat << EOF >> release/experimental-install.yaml # # Gateway API Experimental channel install # EOF cat hack/boilerplate/boilerplate.sh.txt > release/standard-install.yaml sed -i "s/YEAR/$thisyear/g" release/standard-install.yaml cat << EOF >> release/standard-install.yaml # # Gateway API Standard channel install # EOF cat hack/boilerplate/boilerplate.sh.txt > release/webhook-install.yaml sed -i "s/YEAR/$thisyear/g" release/webhook-install.yaml cat << EOF >> release/webhook-install.yaml # # Gateway API deprecated webhook install # EOF for file in `ls config/crd/experimental/gateway*.yaml` do echo "---" >> release/experimental-install.yaml echo "#" >> release/experimental-install.yaml echo "# $file" >> release/experimental-install.yaml echo "#" >> release/experimental-install.yaml cat $file >> release/experimental-install.yaml done for file in `ls config/crd/standard/*.yaml` do echo "---" >> release/standard-install.yaml echo "#" >> release/standard-install.yaml echo "# $file" >> release/standard-install.yaml echo "#" >> release/standard-install.yaml cat $file >> release/standard-install.yaml done for file in `ls config/webhook/*.yaml` do echo "---" >> release/webhook-install.yaml echo "#" >> release/webhook-install.yaml echo "# $file" >> release/webhook-install.yaml echo "#" >> release/webhook-install.yaml cat $file >> release/webhook-install.yaml done echo "Generated:" release/*-install.yaml