We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to init my cluster db like this:
spec: initContainers: - name: wait-for-data image: alpine:3.9 command: - "wget" - "--no-check-certificate" - "https://raw.githubusercontent.com/rnmulchandani/postgres-sample-data/master/employee_sample_data.sql" - "-O" - "/docker-entrypoint-initdb.d/ employee_sample_data.sql" volumeMounts: - mountPath: /docker-entrypoint-initdb.d name: sample-data containers: - name: postgres-with-data image: postgres env: - name: POSTGRES_HOST value: postgres - name: POSTGRES_PORT value: "5432" - name: POSTGRES_PASSWORD value: "a" volumeMounts: - mountPath: /docker-entrypoint-initdb.d name: sample-data volumes: - emptyDir: {} name: sample-data
The text was updated successfully, but these errors were encountered:
it doesn't support now, We'll consider your advices.
Sorry, something went wrong.
No branches or pull requests
I want to init my cluster db like this:
The text was updated successfully, but these errors were encountered: