Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
controller
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TFS
controller
Commits
b6fe7814
Commit
b6fe7814
authored
2 years ago
by
Lluis Gifre Renom
Browse files
Options
Downloads
Patches
Plain Diff
Deploy scripts:
- Cosmetic changes
parent
026a8816
No related branches found
No related tags found
2 merge requests
!54
Release 2.0.0
,
!45
Bug fixes and improvements related to device configuration and monitoring
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
my_deploy.sh
+25
-0
25 additions, 0 deletions
my_deploy.sh
with
25 additions
and
0 deletions
my_deploy.sh
+
25
−
0
View file @
b6fe7814
...
...
@@ -37,7 +37,9 @@ export TFS_GRAFANA_PASSWORD="admin123+"
# Disable skip-build flag to rebuild the Docker images.
export
TFS_SKIP_BUILD
=
""
# ----- CockroachDB ------------------------------------------------------------
# Set the namespace where CockroackDB will be deployed.
export
CRDB_NAMESPACE
=
"crdb"
...
...
@@ -60,9 +62,32 @@ export CRDB_DROP_DATABASE_IF_EXISTS=""
# Disable flag for re-deploying CockroachDB from scratch.
export
CRDB_REDEPLOY
=
""
# ----- NATS -------------------------------------------------------------------
# Set the namespace where NATS will be deployed.
export
NATS_NAMESPACE
=
"nats"
# Disable flag for re-deploying NATS from scratch.
export
NATS_REDEPLOY
=
""
# ----- QuestDB ----------------------------------------------------------------
# If not already set, set the namespace where QuestDB will be deployed.
export
QDB_NAMESPACE
=
${
QDB_NAMESPACE
:-
"qdb"
}
# If not already set, set the database username to be used by Monitoring.
export
QDB_USERNAME
=
${
QDB_USERNAME
:-
"admin"
}
# If not already set, set the database user's password to be used by Monitoring.
export
QDB_PASSWORD
=
${
QDB_PASSWORD
:-
"quest"
}
# If not already set, set the table name to be used by Monitoring.
export
QDB_TABLE
=
${
QDB_TABLE
:-
"tfs_monitoring"
}
## If not already set, disable flag for dropping table if exists.
#export QDB_DROP_TABLE_IF_EXISTS=${QDB_DROP_TABLE_IF_EXISTS:-""}
# If not already set, disable flag for re-deploying QuestDB from scratch.
export
QDB_REDEPLOY
=
${
QDB_REDEPLOY
:-
""
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment