Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Mar 19, 2022
1 parent 87a9e7d commit f73034b
Show file tree
Hide file tree
Showing 9 changed files with 134 additions and 15 deletions.
9 changes: 9 additions & 0 deletions README.md
Expand Up @@ -68,6 +68,7 @@ Supported Services:
- Docker Registry.
- Ghost.
- Httpbin.
- Nagios.
- Etherpad.


Expand Down Expand Up @@ -505,6 +506,14 @@ $ curl -X POST http://127.0.0.1:8000/api/v1/service \
-H 'x-api-key: ~api~key~here~'
```

- Nagios.

```zsh
$ curl -X POST http://127.0.0.1:8000/api/v1/service \
-d '{"service":"nagios"}' \
-H 'x-api-key: ~api~key~here~'
```

- Etherpad.

```zsh
Expand Down
1 change: 1 addition & 0 deletions core/controller/tag.go
Expand Up @@ -51,6 +51,7 @@ func GetTags(c *gin.Context) {
definition.GhostService: []string{"library", "ghost"},
definition.HttpbinService: []string{"kennethreitz", "httpbin"},
definition.EtherpadService: []string{"etherpad", "etherpad"},
definition.NagiosService: []string{"jasonrivers", "nagios"},
}

if _, ok := dockerImagesOrgs[serviceType]; !ok {
Expand Down
1 change: 1 addition & 0 deletions core/controller/workers.go
Expand Up @@ -108,6 +108,7 @@ func (w *Workers) DeployRequest(c *gin.Context, rawBody []byte) {
definition.GhostService: definition.GhostDockerImage,
definition.HttpbinService: definition.HttpbinDockerImageVersion,
definition.EtherpadService: definition.EtherpadDockerImageVersion,
definition.NagiosService: definition.NagiosDockerImageVersion,
}

if _, ok := defaultTags[message.Service]; !ok {
Expand Down
52 changes: 52 additions & 0 deletions core/definition/nagios.go
@@ -0,0 +1,52 @@
// 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 definition

import (
"fmt"
)

const (
// NagiosService const
NagiosService = "nagios"

// NagiosPort const
NagiosPort = "80"

// NagiosDockerImage const
NagiosDockerImage = "jasonrivers/nagios"

// NagiosDockerImageVersion const
NagiosDockerImageVersion = "latest"

// NagiosRestartPolicy const
NagiosRestartPolicy = "unless-stopped"

// NagiosRootUser const
NagiosRootUser = "nagiosadmin"

// NagiosRootPassword const
NagiosRootPassword = "nagios"
)

// GetNagiosConfig gets yaml definition object
func GetNagiosConfig(name, version string) DockerComposeConfig {
services := make(map[string]Service)

if version == "" {
version = NagiosDockerImageVersion
}

services[name] = Service{
Image: fmt.Sprintf("%s:%s", NagiosDockerImage, version),
Restart: NagiosRestartPolicy,
Ports: []string{NagiosPort},
}

return DockerComposeConfig{
Version: "3",
Services: services,
}
}
30 changes: 30 additions & 0 deletions core/definition/nagios_test.go
@@ -0,0 +1,30 @@
// 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 definition

import (
"fmt"
"strings"
"testing"

"github.com/franela/goblin"
)

// TestUnitNagios test cases
func TestUnitNagios(t *testing.T) {
g := goblin.Goblin(t)

g.Describe("#TestNagios", func() {
g.It("It should satisfy all provided test cases", func() {
httpbin := GetNagiosConfig("httpbin", "")
result, err := httpbin.ToString()

g.Assert(strings.Contains(result, fmt.Sprintf("image: %s", fmt.Sprintf("%s:%s", NagiosDockerImage, NagiosDockerImageVersion)))).Equal(true)
g.Assert(strings.Contains(result, fmt.Sprintf(`- "%s"`, NagiosPort))).Equal(true)
g.Assert(strings.Contains(result, fmt.Sprintf("restart: %s", NagiosRestartPolicy))).Equal(true)
g.Assert(err).Equal(nil)
})
})
}
22 changes: 22 additions & 0 deletions core/runtime/docker_compose.go
Expand Up @@ -626,6 +626,24 @@ func (d *DockerCompose) Deploy(serviceID, service, version string, configs map[s

dynamicConfigs["port"], err = d.fetchServicePort(serviceID, definition.EtherpadPort, def)

if err != nil {
return dynamicConfigs, err
}
} else if definition.NagiosService == service {
dynamicConfigs["username"] = definition.NagiosRootUser
dynamicConfigs["password"] = definition.NagiosRootPassword

// Deploy Nagios
def = definition.GetNagiosConfig(serviceID, version)

err = d.deployService(serviceID, def)

if err != nil {
return dynamicConfigs, err
}

dynamicConfigs["port"], err = d.fetchServicePort(serviceID, definition.NagiosPort, def)

if err != nil {
return dynamicConfigs, err
}
Expand Down Expand Up @@ -782,6 +800,10 @@ func (d *DockerCompose) Destroy(serviceID, service, version string, configs map[
} else if definition.EtherpadService == service {
// Get Etherpad Definition
def = definition.GetEtherpadConfig(serviceID, version)

} else if definition.NagiosService == service {
// Get Nagios Definition
def = definition.GetNagiosConfig(serviceID, version)
}

err := d.destroyService(serviceID, def)
Expand Down
15 changes: 0 additions & 15 deletions go.sum
Expand Up @@ -29,7 +29,6 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84=
github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=
github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=
github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
Expand All @@ -51,7 +50,6 @@ github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e h1:Wf6HqHfScWJN9
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=
github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU=
github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
Expand All @@ -64,17 +62,13 @@ github.com/drone/envsubst v1.0.3/go.mod h1:N2jZmlMufstn1KEqvbHjw40h1KyTmnVzHcSc9
github.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=
github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
github.com/franela/goblin v0.0.0-20210113153425-413781f5e6c8 h1:QVPknD9yAYAmmmERIxdPFY6yf8d7xqoieNs/1C9ieCk=
github.com/franela/goblin v0.0.0-20210113153425-413781f5e6c8/go.mod h1:VzmDKDJVZI3aJmnRI9VjAn9nJ8qPPsN1fqzr9dqInIo=
github.com/franela/goblin v0.0.0-20211003143422-0a4f594942bf h1:NrF81UtW8gG2LBGkXFQFqlfNnvMt9WdB46sfdJY4oqc=
github.com/franela/goblin v0.0.0-20211003143422-0a4f594942bf/go.mod h1:VzmDKDJVZI3aJmnRI9VjAn9nJ8qPPsN1fqzr9dqInIo=
github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=
github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI=
github.com/gin-gonic/gin v1.7.6 h1:Ma2JlolDP9KCHuHTrW58EIIxVUQKxSxzuCKguCYyFas=
github.com/gin-gonic/gin v1.7.6/go.mod h1:jD2toBW3GZUr5UMcdrwQA10I7RuaFOl/SGeDjXkfUtY=
github.com/gin-gonic/gin v1.7.7 h1:3DoBmSbJbZAWqXJC3SLjAPfutPJJRN1U5pALB7EeTTs=
github.com/gin-gonic/gin v1.7.7/go.mod h1:axIBovoeJpVj8S3BwE0uPMTeReE4+AfFtqpqaZ1qq1U=
github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
Expand Down Expand Up @@ -209,7 +203,6 @@ github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5
github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=
github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI=
github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg=
github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY=
Expand Down Expand Up @@ -260,13 +253,11 @@ github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1
github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=
github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg=
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=
github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww=
github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0=
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=
github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=
github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88=
Expand All @@ -283,16 +274,13 @@ github.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI=
github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=
github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=
github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
github.com/spf13/cobra v1.1.3 h1:xghbfqPkxzxP3C/f3n5DdpAbdKLj4ZE4BWQI362l53M=
github.com/spf13/cobra v1.1.3/go.mod h1:pGADOWyqRD/YMrPZigI/zbliZ2wVD/23d+is3pSWzOo=
github.com/spf13/cobra v1.4.0 h1:y+wJpx64xcgO1V+RcnwW0LEHxTKRi2ZDPSBjWnrg88Q=
github.com/spf13/cobra v1.4.0/go.mod h1:Wo4iy3BUC+X2Fybo0PDqwJIv3dNRiZLHQymsfxlB84g=
github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=
github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=
github.com/spf13/viper v1.7.1 h1:pM5oEahlgWv/WnHXpgbKz7iLIxRf65tye2Ci+XFK5sk=
github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
Expand All @@ -301,15 +289,12 @@ github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.7.1 h1:5TQK59W5E3v0r2duFAb7P95B6hEeOyEnHRa8MjYSMTY=
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=
github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=
github.com/ugorji/go v1.1.7 h1:/68gy2h+1mWMrwZFeD1kQialdSzAb432dtpeJ42ovdo=
github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw=
github.com/ugorji/go/codec v1.1.7 h1:2SvQaVZ1ouYrrKKwoSk2pzd4A9evlKJb9oTL+OaLUSs=
github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY=
Expand Down
4 changes: 4 additions & 0 deletions web/src/views/Deploy.vue
Expand Up @@ -35,6 +35,7 @@
<option value="ghost">Ghost</option>
<option value="httpbin">Httpbin</option>
<option value="etherpad">Etherpad</option>
<option value="nagios">Nagios</option>
</b-select>
</b-field>

Expand Down Expand Up @@ -248,6 +249,7 @@ export default {
ghost: {},
httpbin: {},
etherpad: {},
nagios: {},
vault: {
token: "peanut",
},
Expand Down Expand Up @@ -415,6 +417,8 @@ export default {
configs = this.form.configs.httpbin;
} else if (this.form.type == "etherpad") {
configs = this.form.configs.etherpad;
} else if (this.form.type == "nagios") {
configs = this.form.configs.nagios;
}
this.$store
Expand Down
15 changes: 15 additions & 0 deletions web/src/views/Services.vue
Expand Up @@ -201,6 +201,16 @@
-
</template>

<template v-if="props.row.service == 'nagios'">
<b-button
size="is-small"
type="is-link is-success is-light"
@click="openServiceDashboard(props.row)"
>Visit</b-button
>
-
</template>

<template v-if="props.row.service == 'httpbin'">
<b-button
size="is-small"
Expand Down Expand Up @@ -270,6 +280,7 @@ export default {
ghost: "Ghost",
httpbin: "Httpbin",
etherpad: "Etherpad",
nagios: "Nagios",
},
};
},
Expand Down Expand Up @@ -337,6 +348,10 @@ export default {
window.open("//" + data.configs.address + ":" + data.configs.port);
}
if (data.service == "nagios") {
window.open("//" + data.configs.address + ":" + data.configs.port);
}
if (data.service == "mailhog") {
window.open("//" + data.configs.address + ":" + data.configs.httpPort);
}
Expand Down

0 comments on commit f73034b

Please sign in to comment.