Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Jul 2, 2021
1 parent 6d4fa7b commit 8d1cd5a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/controller/service.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright 2021 Clivern. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package controller
1 change: 1 addition & 0 deletions deployment/definition/etcd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version: '3'

services:

etcd:
image: docker.io/bitnami/etcd:3-debian-10
environment:
Expand Down
13 changes: 13 additions & 0 deletions deployment/definition/grafana.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: '3'

services:

grafana:
image: 'grafana/grafana:8.0.4'
environment:
- GF_SECURITY_ADMIN_USER=${ADMIN_USER:-admin}
- GF_SECURITY_ADMIN_PASSWORD=${ADMIN_PASSWORD:-admin}
- GF_USERS_ALLOW_SIGN_UP=false
ports:
- '3000:3000'
restart: unless-stopped
1 change: 1 addition & 0 deletions deployment/definition/redis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version: '3'

services:

redis:
image: 'redis:5.0.10-alpine'
volumes:
Expand Down

0 comments on commit 8d1cd5a

Please sign in to comment.