Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update wordpress helm chart #128

Merged
merged 9 commits into from
Aug 31, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 2024-08-21

[prod]

- [associated PR](https://github.com/saritasa-nest/saritasa-devops-helm-charts/pull/128)
- Update wordpress helm chart to the latest version `23.1.4`

## 2024-08-08

[prod]
Expand Down
2 changes: 1 addition & 1 deletion charts/tekton-apps/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ appVersion: "v0.29.0"
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.19
version: 0.2.20-dev.daria.3
kseniyashaydurova marked this conversation as resolved.
Show resolved Hide resolved

maintainers:
- url: https://www.saritasa.com/
Expand Down
2 changes: 1 addition & 1 deletion charts/tekton-apps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ saritasa-tekton-apps

## `chart.version`

![Version: 0.2.19](https://img.shields.io/badge/Version-0.2.19-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.29.0](https://img.shields.io/badge/AppVersion-v0.29.0-informational?style=flat-square)
![Version: 0.2.20](https://img.shields.io/badge/Version-0.2.20-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.29.0](https://img.shields.io/badge/AppVersion-v0.29.0-informational?style=flat-square)

## Maintainers

Expand Down
13 changes: 2 additions & 11 deletions charts/tekton-apps/templates/wordpress/argocd_applications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ spec:
{{- end }}
{{- end }}


extraVolumes:
- name: ssh-key
secret:
Expand All @@ -188,23 +187,15 @@ spec:
{{- end }}

livenessProbe:
httpGet:
kseniyashaydurova marked this conversation as resolved.
Show resolved Hide resolved
path: /wp-admin/install.php
port: 8080
scheme: HTTP
periodSeconds: 120

readinessProbe:
enabled: true
kseniyashaydurova marked this conversation as resolved.
Show resolved Hide resolved
httpGet:
path: /wp-admin/install.php
port: 8080
scheme: HTTP
periodSeconds: 120

service:
type: ClusterIP
port: 8080
ports:
http: 8080

{{- with .ingress }}
ingress:
Expand Down
Loading