File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed
kubernetes/charts/weblogic-operator Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Copyright 2018 Oracle Corporation and/or its affiliates. All rights reserved.
2
+ # Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
3
+
4
+ { {- define " operator.extraResources" } }
5
+ { {- range $idx , $element := .extraResources } }
6
+ ---
7
+ { { toYaml $element } }
8
+ { {- end } }
9
+ { {- end } }
Original file line number Diff line number Diff line change 14
14
{{- if .Values.createOperator }}
15
15
{{- include "operator.operator" $scope }}
16
16
{{- end }}
17
+
18
+ {{- include "operator.extraResources" $scope }}
Original file line number Diff line number Diff line change @@ -91,3 +91,22 @@ javaLoggingLevel: "INFO"
91
91
92
92
# elkIntegrationEnabled specifies whether or not ELK integration is enabled.
93
93
elkIntegrationEnabled : false
94
+
95
+ # extraResources specifies an arbitrary list of extra Kubernetes resources that should be
96
+ # created (and deleted) along with this chart. It provides an easy way for the
97
+ # customer to attach extra Kubernetes resources to the lifecycle of this chart.
98
+ #
99
+ # Example: create an extra persistent volume and persistent claim when this chart is
100
+ # installed, and remove them when this chart is deleted:
101
+ #
102
+ # extraResources:
103
+ # - kind: PersistentVolume
104
+ # apiVersion: v1
105
+ # metadata: ...
106
+ # spec: ...
107
+ # - kind: PersistentVolumeClaim
108
+ # apiVersion: v1
109
+ # metadata: ...
110
+ # spec: ...
111
+ #
112
+ extraResources : {}
You can’t perform that action at this time.
0 commit comments