-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
database is not create for instance when using centralized infra #12
Comments
Which ckan image are you using?
This is where DB is initialized:
https://github.com/ViderumGlobal/ckan-cloud-docker/blob/master/ckan/entrypoint.sh#L15
Who is running cca_operator? ckan-cloud-operator?
…On Thu, Nov 21, 2019 at 2:50 PM Irakli Mchedlishvili < ***@***.***> wrote:
As a cco user, I've tried to deploy a CKAN instance test with centralized
infra but I don't see the databse test created there. This leads to the
authentication Error when CKAN is trying to start and connect to DB. (See
analysis for more info)
Acceptance Criteria
- CKAN Instance has it's dedicated database in centralized DB
- CKAN can connect to DB
Tasks
- Find where the
Analysis
This is all I see in database instance
psql ***@***.***
\l
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
------------------+----------+----------+------------+------------+-----------------------
ckan | postgres | UTF8 | en_US.utf8 | en_US.utf8 | =Tc/postgres +
| | | | | postgres=CTc/postgres+
| | | | | ckan=CTc/postgres
postgres | postgres | UTF8 | en_US.utf8 | en_US.utf8 |
template0 | postgres | UTF8 | en_US.utf8 | en_US.utf8 | =c/postgres +
| | | | | postgres=CTc/postgres
template1 | postgres | UTF8 | en_US.utf8 | en_US.utf8 | =c/postgres +
| | | | | postgres=CTc/postgres
template_postgis | postgres | UTF8 | en_US.utf8 | en_US.utf8 |
Funny thing is that database credentials (User, passwords) are set but the
are not actually created
cat /etc/ckan-conf/secrets/secrets.sh
export BEAKER_SESSION_SECRET=bb6624cd581d6d5192939cc1c69a020aea4168f133fff34c1b
export APP_INSTANCE_UUID=027f9157-05e4-11ea-892d-0242ac11000b
export ***@***.***/first
export ***@***.***/first-datastore
export ***@***.***/first-datastore
export SOLR_URL=http://solr.ckan-cloud:8983/solr/first
export CKAN_REDIS_URL=redis://redis:6379/1
So as it seems everything is done in this script
https://github.com/ViderumGlobal/ckan-cloud-docker/blob/master/cca-operator/cca-operator.sh.
That script is executed when deployment happens
https://github.com/ViderumGlobal/ckan-cloud-helm/blob/master/ckan/templates/ckan-deployment.yaml#L25-L30
Eg passwords set on line 9, 10, 11
POSTGRES_PASSWORD=`python -c "import binascii,os;print(binascii.hexlify(os.urandom(12)))"`
DATASTORE_POSTGRES_PASSWORD=`python -c "import binascii,os;print(binascii.hexlify(os.urandom(12)))"`
DATASTORE_RO_PASSWORD=`python -c "import binascii,os;print(binascii.hexlify(os.urandom(12)))"`
For some reasons we are not getting in this if statment
https://github.com/ViderumGlobal/ckan-cloud-docker/blob/master/cca-operator/cca-operator.sh#L20-L38
that is responsible for creating database. Need to debug there...
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#12>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACAY5JTOONNXPJSGS2QPTLQUZ7ZLANCNFSM4JQB23BQ>
.
|
I'm not using any particular image right now, assuming that will build vanilla CKAN in that case https://github.com/ViderumGlobal/ckan-cloud-helm/blob/master/ckan/templates/ckan-deployment.yaml#L118. But maybe I should? command I've deployed the instance is folowing
Not sure about that one, but my guess is yes, I see the commands are executed from this part https://github.com/ViderumGlobal/ckan-cloud-helm/blob/master/ckan/templates/ckan-deployment.yaml#L25-L30 |
so - |
To
Can I read how to do helm based deployments via CCO anywhere? Or should I just go through the code? |
I'm not sure you can in the docs - but see this script for an example: https://github.com/datopian/ckan-cloud-operator/blob/master/scripts/create%20helm%20instance.py The same functionality is also available via the cli |
As a cco user, I've tried to deploy a CKAN instance
test
with centralized infra but I don't see the databsetest
created there. This leads to the authentication Error when CKAN is trying to start and connect to DB. (See analysis for more info)Acceptance Criteria
Tasks
Analysis
This is all I see in database instance
Funny thing is that database credentials (User, passwords) are set but the are not actually created
So as it seems everything is done in this script https://github.com/ViderumGlobal/ckan-cloud-docker/blob/master/cca-operator/cca-operator.sh. That script is executed when deployment happens https://github.com/ViderumGlobal/ckan-cloud-helm/blob/master/ckan/templates/ckan-deployment.yaml#L25-L30
Eg passwords set on line 9, 10, 11
For some reasons we are not getting in this if statment https://github.com/ViderumGlobal/ckan-cloud-docker/blob/master/cca-operator/cca-operator.sh#L20-L38 that is responsible for creating database. Need to debug there...
The text was updated successfully, but these errors were encountered: