-
-
Notifications
You must be signed in to change notification settings - Fork 28
43 lines (36 loc) · 1.33 KB
/
version_check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Version Check Github Issue Creator
on:
schedule:
- cron: 0 0 1 * *
jobs:
create_issue:
name: Create issues to update helm chart version
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Create issues to update helm chart version
uses: imjohnbo/issue-bot@572eed14422c4d6ca37e870f97e7da209422f5bd
with:
title: "Update helm charts version"
labels: routine
assignees: thaunghtike-share
body: |
### Update helm charts version
- [ ] Karpenter (https://github.com/opszero/terraform-aws-kubespot/blob/main/variables.tf#L426)
- [ ] CSI Secret Store (https://github.com/opszero/terraform-aws-kubespot/blob/main/variables.tf#L438)
- [ ] Metric Server (https://github.com/opszero/terraform-aws-kubespot/blob/main/variables.tf#L384)
### Change the value of variables in variables.tf
variable "metrics_server_version" {
default = "3.8.2"
}
variable "karpenter_version" {
default = "v0.9.1"
}
variable "csi_secrets_store_version" {
default = "1.1.2"
}
pinned: false
close-previous: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}