diff --git a/charts/portfolio/Chart.lock b/charts/portfolio/Chart.lock index dc19df5b7..76b10f64a 100644 --- a/charts/portfolio/Chart.lock +++ b/charts/portfolio/Chart.lock @@ -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" diff --git a/charts/portfolio/Chart.yaml b/charts/portfolio/Chart.yaml index 37702eb0e..ced9d984b 100644 --- a/charts/portfolio/Chart.yaml +++ b/charts/portfolio/Chart.yaml @@ -4,7 +4,7 @@ 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" @@ -12,14 +12,14 @@ 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 diff --git a/charts/portfolio/README.md b/charts/portfolio/README.md index b75f99d59..3f368e6eb 100644 --- a/charts/portfolio/README.md +++ b/charts/portfolio/README.md @@ -2,7 +2,7 @@ portfolio logo -![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) @@ -26,7 +26,6 @@ Kubernetes: `>=1.22.0-0` | Repository | Name | Version | |------------|------|---------| | | common | 1.3.2 | -| | postgresql | 12.1.14 | ## TL;DR @@ -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. | --- diff --git a/charts/portfolio/values.yaml b/charts/portfolio/values.yaml index b78851538..6bf1c7b42 100644 --- a/charts/portfolio/values.yaml +++ b/charts/portfolio/values.yaml @@ -20,22 +20,6 @@ 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) @@ -43,7 +27,7 @@ service: main: ports: http: - port: 8000 + port: 80 ingress: # -- Enable and configure ingress settings for the chart under this key. @@ -51,17 +35,8 @@ ingress: 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