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
We need to add "args" to ContainerBuilder in order to have e.g.:
kind: DeploymentConfig apiVersion: apps.openshift.io/v1 metadata: name: postgres-sample spec: selector: name: postgres-sample template: metadata: name: postgres-sample labels: name: postgres-sample spec: containers: - name: postgres-sample image: 'quay.io/tborgato/postgres:16' args: - '-c' - shared_buffers=256MB - '-c' - max_connections=200 env: - name: POSTGRES_USER value: admin - name: POSTGRES_PASSWORD value: admin - name: POSTGRES_DB value: sampledb - name: PGDATA value: /var/lib/postgresql/data/pgdata
The text was updated successfully, but these errors were encountered:
Fixes #595
1e8aa38
Fixed in #596
Sorry, something went wrong.
No branches or pull requests
We need to add "args" to ContainerBuilder in order to have e.g.:
The text was updated successfully, but these errors were encountered: