be862d863e
This change adds the current status of a project that aims to create
a simple monitoring setup to monitor Gerrit servers, which was developed
internally at SAP.
The project provides an opinionated and basic configuration for helm
charts that can be used to install Loki, Prometheus and Grafana on a
Kubernetes cluster. Scripts to easily apply the configuration and
install the whole setup are provided as well.
The contributions so far were done by (with number of commits)
80 Thomas Draebing
11 Matthias Sohn
2 Saša Živkov
Change-Id: I8045780446edfb3c0dc8287b8f494505e338e066
59 lines
1.2 KiB
Bash
Executable file
59 lines
1.2 KiB
Bash
Executable file
#!/bin/bash -e
|
|
|
|
# Copyright (C) 2020 The Android Open Source Project
|
|
#
|
|
# 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.
|
|
|
|
usage() {
|
|
me=`basename "$0"`
|
|
echo >&2 "Usage: $me [--email EMAIL] [--fingerprint FINGERPRINT] CONFIG"
|
|
exit 1
|
|
}
|
|
|
|
while test $# -gt 0 ; do
|
|
case "$1" in
|
|
--email)
|
|
shift
|
|
EMAIL=$1
|
|
shift
|
|
;;
|
|
|
|
--fingerprint)
|
|
shift
|
|
FINGERPRINT=$1
|
|
shift
|
|
;;
|
|
|
|
*)
|
|
break
|
|
esac
|
|
done
|
|
|
|
CONFIG=$1
|
|
test -z "$CONFIG" && usage
|
|
|
|
if test -z $FINGERPRINT; then
|
|
test -z $EMAIL && usage
|
|
FINGERPRINT=$(gpg --fingerprint "$EMAIL" | \
|
|
grep pub -A 1 | \
|
|
grep -v pub | \
|
|
sed s/\ //g)
|
|
fi
|
|
|
|
sops \
|
|
--encrypt \
|
|
--in-place \
|
|
--encrypted-regex '(password|htpasswd|cert|key|apiUrl|caCert)$' \
|
|
--pgp $FINGERPRINT \
|
|
$CONFIG
|