mirror of
https://gitlab.com/itsulu-odoo/runboat.git
synced 2026-05-30 23:41:27 +00:00
Remove unused ADMIN_PASSWD env var
This commit is contained in:
parent
61ec2f06a0
commit
43e0e5f0d1
6 changed files with 0 additions and 7 deletions
|
|
@ -6,7 +6,6 @@ RUNBOAT_BUILD_PGHOST=postgres14.runboat-builds-db
|
|||
RUNBOAT_BUILD_PGPORT=5432
|
||||
RUNBOAT_BUILD_PGUSER=runboat-build
|
||||
RUNBOAT_BUILD_PGPASSWORD=...
|
||||
RUNBOAT_BUILD_ADMIN_PASSWD=...
|
||||
RUNBOAT_BUILD_DOMAIN=runboat.odoo-community.org
|
||||
RUNBOAT_BUILD_ENV={}
|
||||
RUNBOAT_GITHUB_TOKEN=
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@ RUNBOAT_BUILD_PGHOST=postgres14.runboat-builds-db
|
|||
RUNBOAT_BUILD_PGPORT=5432
|
||||
RUNBOAT_BUILD_PGUSER=runboat-build
|
||||
RUNBOAT_BUILD_PGPASSWORD=...
|
||||
RUNBOAT_BUILD_ADMIN_PASSWD=...
|
||||
RUNBOAT_BUILD_DOMAIN=runboat.odoo-community.org
|
||||
RUNBOAT_BUILD_ENV={}
|
||||
RUNBOAT_GITHUB_TOKEN=
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@ ENV RUNBOAT_BUILD_PGHOST=postgres14.runboat-builds-db
|
|||
ENV RUNBOAT_BUILD_PGPORT=5432
|
||||
ENV RUNBOAT_BUILD_PGUSER=runboat-build
|
||||
ENV RUNBOAT_BUILD_PGPASSWORD=
|
||||
ENV RUNBOAT_BUILD_ADMIN_PASSWD=
|
||||
ENV RUNBOAT_BUILD_DOMAIN=runboat.example.com
|
||||
ENV RUNBOAT_GITHUB_TOKEN=
|
||||
ENV RUNBOAT_LOG_CONFIG=/etc/runboat-log-config.yaml
|
||||
|
|
|
|||
|
|
@ -139,7 +139,6 @@ class DeploymentVars(BaseModel):
|
|||
pguser: str
|
||||
pgpassword: str
|
||||
pgdatabase: str
|
||||
admin_passwd: str
|
||||
hostname: str
|
||||
build_env: dict[str, str]
|
||||
|
||||
|
|
@ -170,7 +169,6 @@ def make_deployment_vars(
|
|||
pguser=settings.build_pguser,
|
||||
pgpassword=settings.build_pgpassword,
|
||||
pgdatabase=build_name,
|
||||
admin_passwd=settings.build_admin_passwd,
|
||||
hostname=f"{slug}.{settings.build_domain}",
|
||||
build_env=settings.build_env or {},
|
||||
)
|
||||
|
|
|
|||
|
|
@ -31,7 +31,6 @@ secretGenerator:
|
|||
- name: odoosecretenv
|
||||
literals:
|
||||
- PGPASSWORD={{ pgpassword }}
|
||||
- ADMIN_PASSWD={{ admin_passwd }}
|
||||
|
||||
configMapGenerator:
|
||||
- name: odooenv
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ class Settings(BaseSettings):
|
|||
build_pgport: str
|
||||
build_pguser: str
|
||||
build_pgpassword: str
|
||||
build_admin_passwd: str
|
||||
build_domain: str
|
||||
build_env: Optional[dict[str, str]]
|
||||
build_images: dict[str, str] = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue