Upgrade notes
Perform the following steps when upgrading your installation to the latest release:
- Terraform
-
-
To support increased Redis usage by the notification service, upgrade the Redis instance type from
micro
tomedium
:-
In
variables.tfvars
, change the value forredis_node_type
tocache.t4g.medium
-
-
Run the following infra modules:
-
secret-infra
, to update secret names to accommodate the renaming of the Gitleaks plugin toplugin-gitleaks
. -
db-infra
, to update the Redis instance type.
-
-
- Helm
-
-
Add
gitlab.com
to the allowlist, to enableui-webapp-service
to obtain groups and project lists:-
For
uiWebappService.sidecar.hosts
invalues-<env>.yaml
, add:- "./gitlab.com"
-
-
Update the name of the Gitleaks plugin. In
values-<env>.yaml
, replace the following:############################################################################################################ # gitleaks-scanner ############################################################################################################ gitleaksScanner: enabled: true name: "gitleaks-scanner" imageTag: "imbrium/gitleaks-scanner:cbc-release-1.45.0"
With:
############################################################################################################ # plugin-gitleaks ############################################################################################################ pluginGitleaks: enabled: true pluginType: "go" name: "plugin-gitleaks" imageTag: "imbrium/plugin-gitleaks:cbc-release-1.45.0"
-