forked from idaholab/Malcolm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
idaholab#189; kubernetes - use Secrets for some environment variables…
… instead of ConfigMaps
- Loading branch information
Showing
40 changed files
with
342 additions
and
297 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# MaxMind GeoIP database update API key (see | ||
# https://support.maxmind.com/hc/en-us/articles/4407116112539-Using-License-Keys) | ||
MAXMIND_GEOIP_DB_LICENSE_KEY=0 | ||
K8S_SECRET=True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# Malcolm Administrator username and encrypted password for nginx reverse proxy (and upload server's SFTP access) | ||
MALCOLM_USERNAME=admin | ||
MALCOLM_PASSWORD=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX== | ||
K8S_SECRET=True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
POSTGRES_DB=netbox | ||
POSTGRES_PASSWORD=XXXXXXXXXXXXXXXXXXXXXXXX | ||
POSTGRES_USER=netbox | ||
K8S_SECRET=True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
REDIS_PASSWORD=XXXXXXXXXXXXXXXXXXXXXXXX | ||
K8S_SECRET=True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
REDIS_PASSWORD=XXXXXXXXXXXXXXXXXXXXXXXX | ||
K8S_SECRET=True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
DB_PASSWORD=xxxxxxxxxxxxxxxx | ||
DB_USER=netbox | ||
EMAIL_PASSWORD= | ||
EMAIL_USERNAME=netbox | ||
NAPALM_PASSWORD= | ||
NAPALM_USERNAME= | ||
REDIS_CACHE_PASSWORD=xxxxxxxxxxxxxxxx | ||
REDIS_PASSWORD=xxxxxxxxxxxxxxxx | ||
SECRET_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | ||
SUPERUSER_API_TOKEN=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | ||
SUPERUSER_NAME=admin | ||
SUPERUSER_PASSWORD=admin | ||
|
||
K8S_SECRET=True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,16 +14,12 @@ REMOTE_AUTH_SUPERUSERS= | |
EXEMPT_VIEW_PERMISSIONS=* | ||
DB_HOST=netbox-postgres | ||
DB_NAME=netbox | ||
DB_PASSWORD=xxxxxxxxxxxxxxxx | ||
DB_USER=netbox | ||
[email protected] | ||
EMAIL_PASSWORD= | ||
EMAIL_PORT=25 | ||
EMAIL_SERVER=localhost | ||
EMAIL_SSL_CERTFILE= | ||
EMAIL_SSL_KEYFILE= | ||
EMAIL_TIMEOUT=5 | ||
EMAIL_USERNAME=netbox | ||
# EMAIL_USE_SSL and EMAIL_USE_TLS are mutually exclusive, i.e. they can't both be `true`! | ||
EMAIL_USE_SSL=false | ||
EMAIL_USE_TLS=false | ||
|
@@ -32,25 +28,17 @@ HOUSEKEEPING_INTERVAL=86400 | |
MAX_PAGE_SIZE=1000 | ||
MEDIA_ROOT=/opt/netbox/netbox/media | ||
METRICS_ENABLED=false | ||
NAPALM_PASSWORD= | ||
NAPALM_TIMEOUT=10 | ||
NAPALM_USERNAME= | ||
REDIS_CACHE_DATABASE=1 | ||
REDIS_CACHE_HOST=netbox-redis-cache | ||
REDIS_CACHE_INSECURE_SKIP_TLS_VERIFY=false | ||
REDIS_CACHE_PASSWORD=xxxxxxxxxxxxxxxx | ||
REDIS_CACHE_SSL=false | ||
REDIS_DATABASE=0 | ||
REDIS_HOST=netbox-redis | ||
REDIS_INSECURE_SKIP_TLS_VERIFY=false | ||
REDIS_PASSWORD=xxxxxxxxxxxxxxxx | ||
REDIS_SSL=false | ||
RELEASE_CHECK_URL=https://api.github.com/repos/netbox-community/netbox/releases | ||
SECRET_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | ||
SKIP_STARTUP_SCRIPTS=true | ||
SKIP_SUPERUSER=false | ||
SUPERUSER_API_TOKEN=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | ||
[email protected] | ||
SUPERUSER_NAME=admin | ||
SUPERUSER_PASSWORD=admin | ||
WEBHOOKS_ENABLED=true | ||
WEBHOOKS_ENABLED=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# A VirusTotal Public API v.20 used to submit hashes of Zeek-extracted files | ||
VTOT_API2_KEY=0 | ||
# Specifies the AES-256-CBC decryption password for encrypted Zeek-extracted files served over HTTP | ||
EXTRACTED_FILE_HTTP_SERVER_KEY=quarantined | ||
K8S_SECRET=True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.