Skip to content

Commit b9216ca

Browse files
Configure dependabot for skipper
Dependabot supports Helm charts which use similar template language as CLM. This is an experiment to test whether dependabot can update images in skipper templates. Signed-off-by: Alexander Yastrebov <[email protected]>
1 parent 1b3ddd1 commit b9216ca

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
4+
version: 2
5+
updates:
6+
- package-ecosystem: docker
7+
directory: /cluster/manifests/skipper
8+
schedule:
9+
interval: daily

cluster/manifests/skipper/hostname-credentials-controller.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# {{ if eq .Cluster.ConfigItems.skipper_oauth2_ui_login "true" }}
2-
# {{ $version := "main-11" }}
32
apiVersion: v1
43
kind: ServiceAccount
54
metadata:
@@ -86,7 +85,7 @@ spec:
8685
restartPolicy: Never
8786
containers:
8887
- name: controller
89-
image: "container-registry.zalando.net/gwproxy/hostname-credentials-controller:{{ $version }}"
88+
image: "container-registry.zalando.net/gwproxy/hostname-credentials-controller:main-11"
9089
terminationMessagePolicy: FallbackToLogsOnError
9190
args:
9291
- -ingress-selector=application

cluster/manifests/skipper/secret-combiner.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# {{ if eq .Cluster.ConfigItems.skipper_oauth2_ui_login "true" }}
2-
# {{ $version := "main-5" }}
32
apiVersion: v1
43
kind: ServiceAccount
54
metadata:
@@ -73,7 +72,7 @@ spec:
7372
restartPolicy: Never
7473
containers:
7574
- name: combiner
76-
image: "container-registry.zalando.net/gwproxy/secret-combiner:{{ $version }}"
75+
image: "container-registry.zalando.net/gwproxy/secret-combiner:main-5"
7776
terminationMessagePolicy: FallbackToLogsOnError
7877
env:
7978
- name: NAMESPACE

0 commit comments

Comments
 (0)