Skip to content

Commit

Permalink
🔧 (portfolio): Update default values for v2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Feb 25, 2023
1 parent 708a3c8 commit 01c16c6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 45 deletions.
7 changes: 2 additions & 5 deletions charts/portfolio/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,5 @@ dependencies:
- name: common
repository: https://bjw-s.github.io/helm-charts
version: 1.3.2
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 12.1.14
digest: sha256:51bab522178e60f0aef5d99aad7db44ede8b679543f0b19e55fa32393a7e31dd
generated: "2023-02-19T11:47:24.134202384Z"
digest: sha256:9bb4816882dfc02904f9f347a7995bf7acefd55bd60f925c3a8d80938a2b1ec0
generated: "2023-02-24T22:50:38.915889-06:00"
12 changes: 6 additions & 6 deletions charts/portfolio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ description: My personal portfolio website
home: https://charts.gabe565.com/charts/portfolio
icon: https://raw.githubusercontent.com/gabe565/portfolio/0f0e80ce2f29e9382a64e7fc6fe2ed1a9993971b/public/android-chrome-512x512.png
type: application
version: 0.5.4
version: 0.6.0
# renovate datasource=docker depName=ghcr.io/gabe565/portfolio
appVersion: latest
kubeVersion: ">=1.22.0-0"
dependencies:
- name: common
repository: https://bjw-s.github.io/helm-charts
version: 1.3.2
- name: postgresql
version: 12.1.14
repository: https://charts.bitnami.com/bitnami
condition: postgresql.enabled
sources:
- https://github.com/gabe565/charts/tree/main/charts/portfolio
- https://github.com/gabe565/portfolio
annotations:
artifacthub.io/changes: |-
- kind: added
description: Added default persistence config
- kind: changed
description: Update common Helm release to v1.3.2
description: Change default port to 80
- kind: removed
description: Remove postgresql Helm dependency
5 changes: 2 additions & 3 deletions charts/portfolio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<img src="https://raw.githubusercontent.com/gabe565/portfolio/0f0e80ce2f29e9382a64e7fc6fe2ed1a9993971b/public/android-chrome-512x512.png" align="right" width="92" alt="portfolio logo" style="padding-left: 20px">

![Version: 0.5.4](https://img.shields.io/badge/Version-0.5.4-informational?style=flat)
![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat)
![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat)

Expand All @@ -26,7 +26,6 @@ Kubernetes: `>=1.22.0-0`
| Repository | Name | Version |
|------------|------|---------|
| <https://bjw-s.github.io/helm-charts> | common | 1.3.2 |
| <https://charts.bitnami.com/bitnami> | postgresql | 12.1.14 |

## TL;DR

Expand Down Expand Up @@ -89,7 +88,7 @@ N/A
| image.repository | string | `"ghcr.io/gabe565/portfolio"` | image repository |
| image.tag | string | `"latest"` | image tag |
| ingress.main | object | See [values.yaml](./values.yaml) | Enable and configure ingress settings for the chart under this key. |
| postgresql | object | See [values.yaml](./values.yaml) | Enable and configure postgresql database subchart under this key. For more options see [postgresql chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/postgresql) |
| persistence.data | object | See [values.yaml](./values.yaml) | Configure persistence settings for the chart under this key. |
| service | object | See [values.yaml](./values.yaml) | Configures service settings for the chart. |

---
Expand Down
37 changes: 6 additions & 31 deletions charts/portfolio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,48 +20,23 @@ controller:
# -- environment variables.
# @default -- See [values.yaml](./values.yaml)
env: {}
# APP_KEY: ""
# DB_HOST: postgresql
# DB_PORT: "5432"
# DB_DATABASE: portfolio
# DB_USERNAME: portfolio
# DB_PASSWORD:
# secretKeyRef:
# name: postgresql
# key: postgres-password
# MAIL_HOST: ""
# MAIL_PORT: ""
# MAIL_USERNAME: ""
# MAIL_PASSWORD: ""
# CONTACTFORM_TO_EMAIL: ""
# CONTACTFORM_TO_NAME: ""
# CONTACTFORM_FROM_EMAIL: ""

# -- Configures service settings for the chart.
# @default -- See [values.yaml](./values.yaml)
service:
main:
ports:
http:
port: 8000
port: 80

ingress:
# -- Enable and configure ingress settings for the chart under this key.
# @default -- See [values.yaml](./values.yaml)
main:
enabled: false

# -- Enable and configure postgresql database subchart under this key.
# For more options see [postgresql chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/postgresql)
# @default -- See [values.yaml](./values.yaml)
postgresql:
enabled: false
auth:
database: portfolio
postgresPassword: changeme
# Uncomment to create a non-root user
# username: portfolio
# password: changeme
primary:
persistence:
enabled: false
persistence:
# -- Configure persistence settings for the chart under this key.
# @default -- See [values.yaml](./values.yaml)
data:
enabled: false

0 comments on commit 01c16c6

Please sign in to comment.