Skip to content

Commit 1095bda

Browse files
author
thepetk
committed
Add all configuration values to helm
1 parent 446d196 commit 1095bda

File tree

1 file changed

+70
-5
lines changed

1 file changed

+70
-5
lines changed

helm/values-production.yaml

Lines changed: 70 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,7 @@ cronjob:
2121
- name: 'gitlab2sentry'
2222
schedule: your-crontab-schedule
2323
env:
24-
- name: GITLAB_TOKEN
25-
valueFrom:
26-
secretKeyRef:
27-
key: GITLAB_TOKEN
28-
name: gitlab2sentry-production
24+
# Sentry values
2925
- name: SENTRY_TOKEN
3026
valueFrom:
3127
secretKeyRef:
@@ -35,5 +31,74 @@ cronjob:
3531
value: your-sentry-dsn
3632
- name: SENTRY_URL
3733
value: your-sentry-url
34+
- name: SENTRY_ORG_SLUG
35+
value: your-sentry-organization-slug
36+
# Gitlab values
37+
- name: GITLAB_TOKEN
38+
valueFrom:
39+
secretKeyRef:
40+
key: GITLAB_TOKEN
41+
name: gitlab2sentry-production
3842
- name: GITLAB_URL
3943
value: your-gitlab-url
44+
# DSN MR (1) values
45+
- name: GITLAB_DSN_MR_CONTENT
46+
value: |
47+
## File generated by gitlab2sentry
48+
[defaults]
49+
url = {sentry_url}
50+
dsn = {dsn}
51+
project = {project_slug}
52+
- name: GITLAB_DSN_MR_DESCRIPTION
53+
value: |
54+
{mentions} Congrats, your Sentry project has been
55+
created, merge this
56+
to finalize your Sentry integration of
57+
{name_with_namespace} :clap: :cookie:
58+
- name: GITLAB_DSN_MR_BRANCH_NAME
59+
value: auto_add_sentry_dsn
60+
- name: GITLAB_DSN_MR_TITLE
61+
value: "[gitlab2sentry] Merge me to add your sentry DSN to {project_name}"
62+
# Sentryclirc MR (2) values
63+
- name: GITLAB_SENTRYCLIRC_MR_CONTENT
64+
value: |
65+
## File generated by gitlab2sentry
66+
[defaults]
67+
url = {sentry_url}
68+
- name: GITLAB_SENTRYCLIRC_MR_DESCRIPTION
69+
value: |
70+
{mentions} Merge this and it will automatically
71+
create a Sentry project \n
72+
for {name_with_namespace} :cookie:
73+
- name: GITLAB_SENTRYCLIRC_MR_BRANCH_NAME
74+
value: auto_add_sentry
75+
- name: GITLAB_SENTRYCLIRC_MR_FILEPATH
76+
value: .sentryclirc
77+
- name: GITLAB_SENTRYCLIRC_MR_COMMIT_MSG
78+
value: Update .sentryclirc
79+
- name: GITLAB_SENTRYCLIRC_MR_TITLE
80+
value: "[gitlab2sentry] Merge me to add sentry to {project_name} or close me"
81+
# Gitlab configuration values
82+
- name: GITLAB_AUTHOR_NAME
83+
value: gitlab2sentry
84+
- name: GITLAB_AUTHOR_EMAIL
85+
value: your-author-email
86+
- name: GITLAB_GRAPHQL_SUFFIX
87+
value: api/graphql
88+
# - name: GITLAB_MENTIONS
89+
# value:
90+
# - "@all"
91+
- name: GITLAB_MENTIONS_ACCESS_LEVEL
92+
value: 40
93+
- name: GITLAB_CREATION_DAYS_LIMIT
94+
value: 60
95+
- name: GITLAB_MR_KEYWORD
96+
value: sentry
97+
- name: GITLAB_REMOVE_SOURCE
98+
value: true
99+
- name: GITLAB_GROUP_IDENTIFIER
100+
value: your-group-identifier
101+
- name: GITLAB_AIOHTTP_TIMEOUT
102+
value: 60
103+
- name: GITLAB_GRAPHQL_PAGE_LENGTH
104+
value: 100

0 commit comments

Comments
 (0)