Skip to content

Commit 9059f47

Browse files
authored
feat: extend image configuration options for WP apps, SD-373 (#180)
1 parent bdd3620 commit 9059f47

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 2025-11-06
4+
5+
[dev]
6+
7+
- [associated PR](https://github.com/saritasa-nest/saritasa-devops-helm-charts/pull/180)
8+
- Extend image configuration options for WordPress apps
9+
310
## 2025-10-16
411

512
[dev]

charts/tekton-apps/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ appVersion: "v0.29.2"
1212
# This is the chart version. This version number should be incremented each time you make changes
1313
# to the chart and its templates, including the app version.
1414
# Versions are expected to follow Semantic Versioning (https://semver.org/)
15-
version: 2.1.7
15+
version: 2.1.8
1616

1717
maintainers:
1818
- url: https://www.saritasa.com/

charts/tekton-apps/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ saritasa-tekton-apps
3131

3232
## `chart.version`
3333

34-
![Version: 2.1.7](https://img.shields.io/badge/Version-2.1.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.29.2](https://img.shields.io/badge/AppVersion-v0.29.2-informational?style=flat-square)
34+
![Version: 2.1.8](https://img.shields.io/badge/Version-2.1.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.29.2](https://img.shields.io/badge/AppVersion-v0.29.2-informational?style=flat-square)
3535

3636
## Maintainers
3737

charts/tekton-apps/templates/wordpress/argocd_applications.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ spec:
5252
allowInsecureImages: true
5353
5454
image:
55-
repository: bitnamilegacy/wordpress
55+
registry: {{ (.image).registry | default "registry-1.docker.io" }}
56+
repository: {{ (.image).repository | default "bitnamilegacy/wordpress" }}
5657
tag: {{ (.image).tag | default "6.1.1" }}
5758
debug: {{ (.image).debug | default "true" }}
5859

0 commit comments

Comments
 (0)