Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
16 changes: 16 additions & 0 deletions oracle-persistent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,22 @@ objects:
app: oracle12c
deploymentconfig: oracle12c
spec:
initContainers:
- command:
- sh
- '-c'
- (chgrp -R 54321 /ORCL)
image: alpine
imagePullPolicy: Always
name: volume-permission-fixer
resources: {}
securityContext:
runAsUser: 0
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /ORCL
name: orcl
containers:
- name: oracle12c
imagePullPolicy: Always
Expand Down