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

add option for deploying awx with a local pv #31

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
5 changes: 5 additions & 0 deletions awx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ Per the AWX documentation, if you choose to turn off Job Isolation you can do so
| postgresql.enabled | bool | `true` | Set to false if using external postgresql |
| postgresql.postgresqlHost | string | `nil` | Set this only if using an external postgresql database. Alternatively, you can provide this value through postgresqlExistingSecret. |
| postgresql.postgresqlPassword | string | `nil` | You must set this value or provide postgresqlExistingSecret |
| postgresql.pv.enabled | bool | `false` | Set to true if you want to create local pv |
| postgresql.pv.size | string | `8Gi` | Size of the local pv to create postgres default is 8Gi |
| postgresql.pv.path | string | `"/mnt/data"` | path of where to mount the pv |
| postgresql.persistence.selector | {} | `{"matchLabels": {"type": "awx-local"}` | Selector to match an existing Persistent Volume |
| postgresql.volumePermissions.enabled | bool | `false` | Set to true if you want to create local pv with non root permissions |
| postgresqlExistingSecret | string | `nil` | The name of an existing secret in the same namespace containing DATABASE_USER, DATABASE_NAME, DATABASE_HOST, DATABASE_HOST, DATABASE_PORT, DATABASE_PASSWORD, DATABASE_ADMIN_PASSWORD keys and values |
| redis | object | `{"architecture":"standalone","auth":{"enabled":false},"enabled":true,"host":null,"image":{"tag":"6.2.4"},"port":6379}` | See bitnami/redis chart values for all options |
| redis.enabled | bool | `true` | Set to false if using external redis |
Expand Down
19 changes: 19 additions & 0 deletions awx/templates/pv.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{{- if and ( .Values.postgresql.persistence.enabled ) ( .Values.postgresql.persistence.pv.enabled ) }}
apiVersion: v1
kind: PersistentVolume
metadata:
name: {{ include "awx.fullname" . }}-volume
labels:
type: {{ .Values.postgresql.persistence.pv.selector.matchLabels.type }}
app.kubernetes.io/name: {{ include "awx.name" . }}
helm.sh/chart: {{ include "awx.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
spec:
capacity:
storage: {{ .Values.postgresql.persistence.pv.size }}
accessModes:
- ReadWriteOnce
hostPath:
path: {{ .Values.postgresql.persistence.pv.path }}
{{- end }}
11 changes: 11 additions & 0 deletions awx/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,20 @@ postgresql:
persistence:
enabled: true
# size: 50Gi
# if pv enabled you should enable volumePermissions as well
pv:
enabled: false
size: 8Gi
path: "/mnt/data"
selector:
matchLabels:
type: awx-local
# resources: {}
metrics:
enabled: false
volumePermissions:
enabled: false


# -- The name of an existing secret in the same namespace containing DATABASE_USER, DATABASE_NAME, DATABASE_HOST, DATABASE_HOST, DATABASE_PORT, DATABASE_PASSWORD, DATABASE_ADMIN_PASSWORD keys and values
postgresqlExistingSecret: