aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/common/postgres/templates/service-common.yaml
diff options
context:
space:
mode:
authorrajesh.kumar <rk00747546@techmahindra.com>2023-10-17 15:29:20 +0530
committerAndreas Geissler <andreas-geissler@telekom.de>2024-02-19 11:11:21 +0100
commit062e7c2a2f0e666ba87d4a0337e5774cf841b3f9 (patch)
tree0b186a33f7b090df790010a59db643ea65ccebd7 /kubernetes/common/postgres/templates/service-common.yaml
parent2ee6ad456a91061d64b859ba20108c7e3c556de3 (diff)
[POSTGRES][COMMON] Add support for postgres operator
Add template for the postgres operator instance setup and modifications to use the postgres instance via Operator TBD: Update of documentation and fix for clients (DMaaP, CPS) Issue-ID: OOM-3247 Change-Id: I56c34400dc73c71b936a51260efd231017adaeae Signed-off-by: rajesh.kumar <rk00747546@techmahindra.com>
Diffstat (limited to 'kubernetes/common/postgres/templates/service-common.yaml')
-rw-r--r--kubernetes/common/postgres/templates/service-common.yaml2
1 files changed, 2 insertions, 0 deletions
diff --git a/kubernetes/common/postgres/templates/service-common.yaml b/kubernetes/common/postgres/templates/service-common.yaml
index 6e74a06616..6ec83dc0f4 100644
--- a/kubernetes/common/postgres/templates/service-common.yaml
+++ b/kubernetes/common/postgres/templates/service-common.yaml
@@ -13,6 +13,7 @@
# # See the License for the specific language governing permissions and
# # limitations under the License.
*/}}
+{{- if not .Values.global.postgres.useOperator }}
apiVersion: v1
kind: Service
metadata:
@@ -39,3 +40,4 @@ spec:
selector:
app: {{ include "common.name" . }}
release: {{ include "common.release" . }}
+{{- end }}