From 2e81e657bc325700ce15135254ecb6597d6aabab Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Wed, 15 Dec 2021 17:30:18 +0100 Subject: [PATCH] fix: add DRONE_GITEE parameters --- README.md | 3 +++ values.yaml | 16 ++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/README.md b/README.md index 4015d15..76fe0c5 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,9 @@ be the options passed via the `--set` flag of the `helm install` command. | `config.DRONE_GITEA_CLIENT_SECRET` | [Documentation](https://docs.drone.io/server/reference/drone-gitea-client-secret) | | `config.DRONE_GITEA_SERVER` | [Documentation](https://docs.drone.io/server/reference/drone-gitea-server) | | `config.DRONE_GITEA_SKIP_VERIFY` | [Documentation](https://docs.drone.io/server/reference/drone-gitea-skip-verify) | +| `config.DRONE_GITEE_REDIRECT_URL` | [Documentation](https://docs.drone.io/server/reference/drone-gitee-redirect-url) | +| `config.DRONE_GITEE_SCOPE` | [Documentation](https://docs.drone.io/server/reference/drone-gitee-scope) | +| `config.DRONE_GITEE_SKIP_VERIFY` | [Documentation](https://docs.drone.io/server/reference/drone-gitee-skip-verify) | | `config.DRONE_GITHUB_CLIENT_SECRET` | [Documentation](https://docs.drone.io/server/reference/drone-github-client-secret) | | `config.DRONE_GITHUB_SCOPE` | [Documentation](https://docs.drone.io/server/reference/drone-github-scope) | | `config.DRONE_GITHUB_SERVER` | [Documentation](https://docs.drone.io/server/reference/drone-github-server) | diff --git a/values.yaml b/values.yaml index 7afce69..4703f02 100644 --- a/values.yaml +++ b/values.yaml @@ -183,6 +183,22 @@ config: {} # https://docs.drone.io/server/reference/drone-gitea-skip-verify/ # DRONE_GITEA_SKIP_VERIFY: "" + # DRONE_GITEE_REDIRECT_URL + # String value configures the Gitee OAuth authorize redirect url. + # https://docs.drone.io/server/reference/drone-gitee-redirect-url/ + # DRONE_GITEE_REDIRECT_URL: "" + + # DRONE_GITEE_SCOPE + # String value provides a comma-separated list of OAuth scopes. + # https://docs.drone.io/server/reference/drone-gitee-scope/ + # DRONE_GITEE_SCOPE: "" + + # DRONE_GITEE_SKIP_VERIFY + # Boolean value disables TLS verification when establishing a connection to + # the remote Gitee server. + # https://docs.drone.io/server/reference/drone-gitee-skip-verify/ + # DRONE_GITEE_SKIP_VERIFY: "" + # DRONE_GITHUB_CLIENT_SECRET # String value configures the GitHub oauth client secret. This is used to # authorize access to GitHub on behalf of a Drone user.