app/matrix: appservice-irc: use secret in bootstrap job

Previously: 856b216459 switched to using a
Secret instead of a ConfigMap for appservice-irc. That however didn't
update the bootstrap job which still used the ConfigMap. This fixes
that.

Change-Id: I50f33935691678ce24ecf4e04d7ce1b13c184929
changes/84/984/1
q3k 2021-06-06 12:30:19 +00:00
parent 56c888b443
commit 972e54651c
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ local kube = import "../../../kube/kube.libsonnet";
template+: {
spec+: {
volumes_: {
config: kube.ConfigMapVolume(bridge.config),
config: kube.SecretVolume(bridge.config),
},
containers_: {
bootstrap: kube.Container("appservice-irc-%s-bootstrap" % [name]) {