-
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.
Adding, deleting, and editing users and roles (#3)
* Fix routing discrepancies Add docker-compose setup for tests Disable leader election in UI for single-noce clusters * Merge pull request #1 from utking/Adding,-deleting,-and-editing-users… (#2)
- Loading branch information
Showing
7 changed files
with
50 additions
and
8 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,10 @@ | ||
UI_USER=admin | ||
UI_PASSWORD=admin | ||
ETCD_NODES="http://etcd:2379" | ||
ETCD_ADMIN_USER= | ||
ETCD_ADMIN_PASSWORD= | ||
# SSL_KEY=./ssl/key.pem | ||
# SSL_CA=./ssl/ca.pem | ||
# SSL_CERT=./ssl/cert.pem | ||
# LOG_DIR_PATH=logs | ||
ETCD_TIMEOUT=1 |
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,26 @@ | ||
version: '2' | ||
|
||
networks: | ||
app-tier: | ||
driver: bridge | ||
|
||
services: | ||
Etcd: | ||
image: 'bitnami/etcd:latest' | ||
environment: | ||
- ALLOW_NONE_AUTHENTICATION=yes | ||
- ETCD_ADVERTISE_CLIENT_URLS=http://etcd:2379 | ||
ports: | ||
- 2379:2379 | ||
- 2380:2380 | ||
networks: | ||
- app-tier | ||
myapp: | ||
image: 'etcd-ui:local' | ||
volumes: | ||
- ./ssl:/app/ssl:ro | ||
- ./.env.docker:/app/.env:ro | ||
ports: | ||
- 8080:8080 | ||
networks: | ||
- app-tier |
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
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