Skip to content

Commit

Permalink
done (#3028)
Browse files Browse the repository at this point in the history
Co-authored-by: renmingu <40223865+renmingu@users.noreply.github.com>
  • Loading branch information
rmgogogo and renmingu authored Feb 12, 2020
1 parent 02fabd3 commit e344b74
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/diagnose/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
approvers:
- SinaChavoshi
- rmgogogo
reviewers:
- SinaChavoshi
- rmgogogo
49 changes: 49 additions & 0 deletions tools/diagnose/kfp.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
#!/bin/bash
#
# Copyright 2020 Google LLC
#
# 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 bash launches diagnose steps.

project=''
cluster=''
region=''
namespace=''

print_usage() {
printf "Usage: $0 -p project -c cluster -r region -n namespace\n"
}

while getopts ':p:c:r:n:' flag; do
case "${flag}" in
p) project=${OPTARG} ;;
c) cluster=${OPTARG} ;;
r) region="${OPTARG}" ;;
n) namespace="${OPTARG}" ;;
*) print_usage
exit 1 ;;
esac
done

if [ -z "${project}" ] || [ -z "${cluster}" ] || [ -z "${region}" ] || [ -z "${namespace}" ]; then
print_usage
exit 1
fi

echo "This tool helps you diagnose your KubeFlow Pipelines and provide configure suggestions."
echo "Start checking [project: ${project}, cluster: ${cluster}, region: ${region}, namespace: ${namespace}]"

# Do anything here

echo "Done"

0 comments on commit e344b74

Please sign in to comment.