Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
feat: Add home directory config (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonywendt authored Jan 24, 2024
1 parent 4e81682 commit 76d5bfd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
13 changes: 10 additions & 3 deletions jira-flux-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,18 @@ application:
volumes:
localHome:
persistentVolumeClaim:
create: true
# storageClassName: your-storage-class-here
create: ###ZARF_VAR_JIRA_LOCAL_HOME_ENABLED###
storageClassName: ###ZARF_VAR_JIRA_RWO_STORAGE_CLASS###
resources:
requests:
storage: 1Gi
storage: ###ZARF_VAR_JIRA_LOCAL_HOME_SIZE###
sharedHome:
persistentVolumeClaim:
create: ###ZARF_VAR_JIRA_SHARED_HOME_ENABLED###
storageClassName: ###ZARF_VAR_JIRA_RWX_STORAGE_CLASS###
resources:
requests:
storage: ###ZARF_VAR_JIRA_SHARED_HOME_SIZE###
# When istio injected, add an annotation with the istio version to the manager pods only
podAnnotations:
bigbang.dev/istioVersion: ###ZARF_VAR_ISTIO_VERSION###
Expand Down
12 changes: 12 additions & 0 deletions zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ variables:
default: "jiradb"
- name: JIRA_DB_USERNAME
default: "jira"
- name: JIRA_LOCAL_HOME_ENABLED
default: "false"
- name: JIRA_LOCAL_HOME_SIZE
default: "128Gi"
- name: JIRA_RWO_STORAGE_CLASS
default: "local-path"
- name: JIRA_SHARED_HOME_ENABLED
default: "false"
- name: JIRA_SHARED_HOME_SIZE
default: "128Gi"
- name: JIRA_RWX_STORAGE_CLASS
default: "local-path"
- name: DOMAIN
default: "bigbang.dev"

Expand Down

0 comments on commit 76d5bfd

Please sign in to comment.