Skip to content

Commit

Permalink
removed unused values from values
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkeschiren committed Sep 20, 2024
2 parents 1037e62 + c7dd1d6 commit 5854983
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checkov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run Checkov action
id: checkov
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: d3adb5/helm-unittest-action@v2
with:
install-mode: force
Expand Down
2 changes: 1 addition & 1 deletion charts/directus/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type: application
# 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.9.02
version: 0.9.04

# This is the version number of the application being deployed. They should reflect the version
# the application is using.
Expand Down
10 changes: 10 additions & 0 deletions charts/directus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,16 @@ helm delete my-release-name
| `persistence.annotations` | Annotations to add to volume | `{}` |
| `persistence.accessModes` | accessMode for Persistent Volume | `ReadWriteOnce` |
| `persistence.size` | Size for Volume | `8Gi` |
| `persistenceExtensions.enabled` | If to enable persistence storage for extensions volume | `false` |
| `persistenceExtensions.storageClass` | storageClass for volume | `-` |
| `persistenceExtensions.annotations` | Annotations to add to volume | `{}` |
| `persistenceExtensions.accessModes` | accessMode for Persistent Volume | `ReadWriteOnce` |
| `persistenceExtensions.size` | Size for Volume | `8Gi` |
| `persistenceTemplates.enabled` | If to enable persistence storage for templates volume | `false` |
| `persistenceTemplates.storageClass` | storageClass for volume | `-` |
| `persistenceTemplates.annotations` | Annotations to add to volume | `{}` |
| `persistenceTemplates.accessModes` | accessMode for Persistent Volume | `ReadWriteOnce` |
| `persistenceTemplates.size` | Size for Volume | `8Gi` |
| `ingress.enabled`| Enables Ingress | `false`|
| `ingress.annotations`| Ingress annotations | `{}` |
| `ingress.hosts` | Ingress extra paths to prepend to every host configuration| `["chart-example.local"]` |
Expand Down
3 changes: 3 additions & 0 deletions charts/directus/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ spec:
{{- if .Values.ingress.enabled }}
- name: PUBLIC_URL
value: http{{ if .Values.ingress.tls }}s{{ end }}://{{(index .Values.ingress.hosts 0).host }}
{{ else }}
- name: PUBLIC_URL
value: ""
{{- end }}
{{- end }}
- name: KEY
Expand Down

0 comments on commit 5854983

Please sign in to comment.