-
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.
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 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,62 @@ | ||
#variables to be updated | ||
LEAD_HOST_IP="9.98.12.81" | ||
NFS_HOST_IP="9.98.12.81" | ||
|
||
PORTAINER_PORT="9000" # exposed port for Portainer | ||
LDAP_PORT="8084" # exposed port for LDAP UI | ||
GOGS_PORT="10080" #exposed port for GOGS | ||
REDMINEUI_PORT="10083" #exposed port for REDMINE | ||
JENKINS_UI_PORT="10081" # exposed port for Jenkins UI | ||
JENKINS_SLAVE_PORT="50001" # exposed port for Jenkins slave connection | ||
NEXUS_ARTIFACT_PORT="8081" # exposed port for Nexus artifacts (jar, war, etc) upload | ||
NEXUS_IMAGE_PORT="5000" # exposed port for Nexus docker image upload | ||
GITLAB_PORT="11080" #exposed port for Gitlab | ||
WORDPRESS_PORT="8080" #exposed port for Wordpress | ||
BOOKSTACK_PORT="10088" #exposed port for bookstack | ||
CADVISOR_PORT="8082" #exposed port for cAdvisor | ||
SONARQUBE_PORT="19000" #exposed port for Sonarqube | ||
HYGIEIAUI_PORT="8888" #exposed port for Hygieia UI | ||
KIBANA_PORT="5601" #exposed port for Kibana | ||
GRAFANA_PORT="3000" #exposed port for Grafana | ||
|
||
|
||
#internal variables - do not change | ||
|
||
NETWORK_NAME="devops_network" | ||
|
||
HOST_INTERNAL_IP="11.7.0.1" | ||
HOST_INTERNAL_SUBNET="11.7.0.0/16" | ||
|
||
PORTAINER_IMAGE="justinwzy/devops_portainer:latest" | ||
LDAP_IMAGE="justinwzy/devops_ldap:latest" | ||
LDAPUI_IMAGE="justinwzy/devops_ldapui:latest" | ||
REDMINEDB_IMAGE="sameersbn/mysql:latest" | ||
REDMINE_IMAGE="sameersbn/redmine:latest" | ||
NEXUS_IMAGE="justinwzy/devops_nexus:latest" | ||
JENKINS_IMAGE="justinwzy/devops_jenkins:latest" | ||
MAVEN_IMAGE="justinwzy/devops_maven:latest" | ||
GITLAB_IMAGE="justinwzy/devops_gitlab:latest" | ||
BOOKSTACKDB_IMAGE="justinwzy/devops_bookstackdb:latest" | ||
BOOKSTACK_IMAGE="justinwzy/devops_bookstack:latest" | ||
CADVISOR_IMAGE="justinwzy/devops_cadvisor:latest" | ||
SONARQUBEDB_IMAGE="justinwzy/devops_sonarqubedb:latest" | ||
SONARQUBE_IMAGE="justinwzy/devops_sonarqube:latest" | ||
HYGIEIADB_IMAGE="justinwzy/devops_hygieiadb:latest" | ||
HYGIEIAAPI_IMAGE="justinwzy/devops_hygieiaapi:latest" | ||
HYGIEIAUI_IMAGE="justinwzy/devops_hygieiaui:latest" | ||
HYGIEIACLCTR_JENKINS_BUILD_IMAGE="justinwzy/devops_hygieia_jenkins_build_collector:latest" | ||
HYGIEIACLCTR_SONAR_CODE_IMAGE="justinwzy/devops_hygieia_sonar_code_collector:latest" | ||
HYGIEIACLCTR_GITLAB_FEATURE_IMAGE="justinwzy/devops_hygieia_gitlab_feature_collector:latest" | ||
HYGIEIACLCTR_GITLAB_SCM_IMAGE="justinwzy/devops_hygieia_gitlab_scm_collector:latest" | ||
INFLUXDB_IMAGE="justinwzy/devops_influxdb:latest" | ||
GRAFANA_IMAGE="justinwzy/devops_grafana:latest" | ||
|
||
ELASTICSEARCH_IMAGE="justinwzy/devops_elasticsearch:latest" | ||
KIBANA_IMAGE="justinwzy/devops_kibana:latest" | ||
|
||
|
||
|
||
|
||
REDMINE_DB_NM="redmine" # name of the redmine db admin | ||
REDMINE_DB_USER="admin" # id for redmine db admin | ||
REDMINE_DB_PWD="zaq12wsx" # password for redmine db admin |