37 lines
1.3 KiB
Bash
Executable File
37 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2020 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.
|
|
|
|
if [[ -z "$(command -v yamllint)" ]]; then
|
|
apt update && apt install yamllint -y
|
|
fi
|
|
|
|
LOG=/tmp/yamllint.log
|
|
|
|
for path in "deploy/*.yaml" "deploy/example/*.yaml" "deploy/example/windows/*.yaml" "deploy/example/smb-provisioner/*.yaml" "deploy/example/metrics/*.yaml" "deploy/example/cloning/*.yaml"
|
|
do
|
|
echo "checking yamllint under path: $path ..."
|
|
yamllint -f parsable $path | grep -v "line too long" > $LOG
|
|
cat $LOG
|
|
linecount=`cat $LOG | grep -v "line too long" | wc -l`
|
|
if [ $linecount -gt 0 ]; then
|
|
echo "yaml files under $path are not linted, failed with: "
|
|
cat $LOG
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
echo "Congratulations! All Yaml files have been linted."
|