new: [codimd] add charm
#1
Closed
njeudy
wants to merge 1 commits from charm-codimd-new
into lokavaluto/dev/master
pull from: charm-codimd-new
merge into: 0k:lokavaluto/dev/master
0k:0k/dev/master
0k:backup
0k:bgallet/nextcloud
0k:boris/smtp-extern
0k:cups_service_alpha
0k:dev
0k:dev1
0k:dhcp
0k:element
0k:etherpad-upd
0k:framadate
0k:get-version
0k:lokavaluto/dev/master
0k:master
0k:matomo
0k:new-mailhog-charms
0k:new-monujo-options
0k:nj-collabra-office
0k:nj-keycloak-17.0
0k:nj-organice-charm
0k:nj-vaulwarden-migrate
0k:ntfy-install
0k:odoo_fix_webhook_url
0k:postgres
0k:test
0k:upd-docker
0k:update-latest-synapse
0k:wip
3 changed files with 98 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||||
|
#!/bin/bash |
||||
|
|
||||
|
init-config-add "\ |
||||
|
$SERVICE_NAME: |
||||
|
environment: |
||||
|
CMD_USECDN: \"false\" |
||||
|
" |
||||
|
# codimd create uploads folder with wrong permission |
||||
|
|
||||
|
mkdir -p "$SERVICE_DATASTORE/home/hackmd/app/public/uploads" |
||||
|
chown -R 1500:1500 "$SERVICE_DATASTORE/home/hackmd/app/public/" |
@ -0,0 +1,24 @@ |
|||||
|
#!/bin/bash |
||||
|
|
||||
|
## XXXvlab: this hook should go into a generic odoo image |
||||
|
|||||
|
|
||||
|
## XXXvlab: should get location of code |
||||
|
CONFIG=$SERVICE_CONFIGSTORE/etc/odoo-server.conf |
||||
vlab
commented 4 years ago
Review
same on both line same on both line
|
|||||
|
|
||||
|
. lib/common |
||||
vlab
commented 4 years ago
Review
no no `lib/common` provided
|
|||||
|
|
||||
|
set -e |
||||
|
|
||||
|
PASSWORD="$(relation-get password)" |
||||
|
USER="$(relation-get user)" |
||||
|
DBNAME="$(relation-get dbname)" |
||||
|
|
||||
|
|
||||
|
config-add "\ |
||||
|
services: |
||||
|
$MASTER_BASE_SERVICE_NAME: |
||||
|
environment: |
||||
|
CMD_DB_URL: postgres://$USER:$PASSWORD@$TARGET_SERVICE_NAME/$DBNAME |
||||
|
" |
||||
|
|
||||
|
info "Configured $SERVICE_NAME code for $TARGET_SERVICE_NAME access." |
@ -0,0 +1,63 @@ |
|||||
|
docker-image: nabo.codimd.dev/hackmdio/hackmd:2.2.0 |
||||
vlab
commented 4 years ago
Review
need to push the image to need to push the image to ``docker.0k.io`` just to be sure that we have a copy.
|
|||||
|
data-resources: |
||||
|
- /home/hackmd/app/public/uploads |
||||
|
# config-resources: |
||||
|
# ## XXXvlab: should this be there or declared dynamically in the relation that |
||||
|
# ## create/update this file ? |
||||
|
# # - /etc/odoo-server.conf |
||||
|
|
||||
|
# docker-compose: |
||||
|
# command: |
||||
|
# - odoo |
||||
|
# - --config=/opt/odoo/auto/odoo.conf |
||||
|
## YYYvlab: useful ? |
||||
|
# tty: true |
||||
|
# environment: |
||||
|
# INITIAL_LANG: fr_FR |
||||
|
# LIST_DB: 'true' |
||||
vlab
commented 4 years ago
Review
lot of commented code that should not be committed lot of commented code that should not be committed
|
|||||
|
|
||||
|
default-options: |
||||
|
|
||||
|
uses: |
||||
|
postgres-database: |
||||
|
#constraint: required | recommended | optional |
||||
|
#auto: pair | summon | none ## default: pair |
||||
|
constraint: required |
||||
|
auto: summon |
||||
|
solves: |
||||
|
database: "main storage" |
||||
|
default-options: |
||||
|
extensions: |
||||
|
- unaccent |
||||
vlab
commented 4 years ago
Review
do we need do we need `unaccent` ?
|
|||||
|
log-rotate: |
||||
|
#constraint: required | recommended | optional |
||||
|
#auto: pair | summon | none ## default: pair |
||||
|
constraint: recommended |
||||
|
auto: pair |
||||
|
solves: |
||||
|
unmanaged-logs: "in docker logs" |
||||
|
#default-options: |
||||
|
web-proxy: |
||||
|
#constraint: required | recommended | optional |
||||
|
#auto: pair | summon | none ## default: pair |
||||
|
constraint: recommended |
||||
|
auto: pair |
||||
|
solves: |
||||
|
proxy: "Public access" |
||||
|
default-options: |
||||
|
target: !var-expand ${MASTER_BASE_SERVICE_NAME}:3000 |
||||
|
backup: |
||||
|
constraint: recommended |
||||
|
auto: pair |
||||
|
solves: |
||||
|
backup: "Automatic regular backup" |
||||
|
default-options: |
||||
|
## First pattern matching wins, no pattern matching includes. |
||||
|
## include-patterns are checked first, then exclude-patterns |
||||
|
## Patterns rules: |
||||
|
## - ending / for directory |
||||
|
## - '*' authorized |
||||
|
## - must start with a '/', will start from $SERVICE_DATASTORE |
||||
|
#exclude-patterns: |
||||
|
# - "/var/lib/odoo/sessions/" |
||||
|
|
Reference in new issue
mention about 'odoo', bad copy paste