skip to Main Content

Debian – How to create tables in posgresql in helm

I have deployed postgresql instance in k8s using helm and creating a database using values.yaml. Now How to create table. global: postgresql: auth: # Added below credentials for testing postgresPassword: "postgresqladmin" username: "admin" password: "admin" database: "postgresqlDB" containerPorts: postgresql: 5432…

VIEW QUESTION

Nginx – Aerospike Kubernetes operator installing error in EKS cluster

strong textTill the cert-manager every pods working good as followed by aerospike docs. But while installing the operator the operator pods get crash loop backoff. Installing operator using: git clone https://github.com/aerospike/aerospike-kubernetes-operator.git git checkout 2.5.0 cd aerospike-kubernetes-operator/helm-charts helm install aerospike-kubernetes-operator ./aerospike-kubernetes-operator…

VIEW QUESTION

Setup PostgreSql configuration with Helm

I've setup a PostgreSQL database with Helm with this ConfigMap, that contains the initial script allows to create the databases and schemas I need: apiVersion: v1 kind: ConfigMap metadata: name: {{ .Values.postgres.configmap }} namespace: {{ .Release.Namespace }} data: init_script.sh: |+…

VIEW QUESTION

Redis – Issue with installing apache superset on EKS

I have created an EKS cluster with ALB setup. I tried installing superset by following the steps provided in https://superset.apache.org/docs/installation/running-on-kubernetes/ my-values.yaml ingress: enabled: true ingressClassName: ~ annotations: kubernetes.io/ingress.class: alb alb.ingress.kubernetes.io/scheme: internet-facing alb.ingress.kubernetes.io/target-type: instance # kubernetes.io/tls-acme: "true" ## Extend timeout to…

VIEW QUESTION
Back To Top
Search