Skip to content

Commit af01412

Browse files
author
Derek Wasinger
committed
removed trustedClientKey
1 parent f104368 commit af01412

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

deployment/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ helm template . \
3737
--set gitLabApiUrl=<your-gitlab-base-url> \
3838
--set gitLabPersonalAccessToken=<your-gitlab-personal-access-token> \
3939
--set engagementsRepositoryId=<your-gitlab-group-id> \
40-
--set trustedClientKey=<your-trusted-client-key> \
4140
| oc apply -f -
4241
```
4342

@@ -53,6 +52,5 @@ It accepts the following variables
5352
| `gitLabApiUrl` | The base URL of the GitLab instance to use |
5453
| `gitLabPersonalAccessToken` | The access token to use to auth against GitLab |
5554
| `engagementsRepositoryId` | The ID of the GitLab group under which to create new projects |
56-
| `trustedClientKey` | [Temporary] Used as a placeholder to authenticate client requests, being replaced by validating JWT tokens against the `jwtVerifyPublicKeyLocation` |
5755

5856
This will spin up all of the usual resources that this service needs in production, plus a `BuildConfig` configured to build it from source from the Git repository specified. To trigger this build, use `oc start-build omp-git-api`.

deployment/templates/gitlab-secret.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@ stringData:
1111
GITLAB_API_URL: "{{ .Values.gitLabApiUrl }}"
1212
GITLAB_PERSONAL_ACCESS_TOKEN: "{{ .Values.gitLabPersonalAccessToken }}"
1313
ENGAGEMENTS_REPOSITORY_ID: "{{ .Values.engagementsRepositoryId }}"
14-
TRUSTED_CLIENT_KEY: "{{ .Values.trustedClientKey }}"
1514
{{- end }}

deployment/values-dev.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@ configRepositoryId: false
1818
deployKey: false
1919
gitLabApiUrl: false
2020
gitLabPersonalAccessToken: false
21-
engagementsRepositoryId: false
22-
trustedClientKey: false
21+
engagementsRepositoryId: false

0 commit comments

Comments
 (0)