diff --git a/docker/get-docker-tags.sh b/docker/get-docker-tags.sh index 2ca09b3..b1fdd0a 100644 --- a/docker/get-docker-tags.sh +++ b/docker/get-docker-tags.sh @@ -49,9 +49,6 @@ elif [ "$GIT_BRANCH" = "main" ]; then echoImageName "main-${BUILD_NUM}-${GIT_SHA1_SHORT}" echoImageName "main-latest" -#elif [ "$GIT_BRANCH" = "staging" ]; then -# echoImageName "staging-${BUILD_NUM}-${GIT_SHA1_SHORT}" -# echoImageName "staging-latest" else echo "Nothing to do. No docker tag defined for branch: $GIT_BRANCH, tag: $GIT_TAG" diff --git a/docs/environment-variables.md b/docs/environment-variables.md index 37eba1d..befc5b9 100644 --- a/docs/environment-variables.md +++ b/docs/environment-variables.md @@ -1,6 +1,6 @@ -# Bifrost Gateway Environment Variables +# Rainbow Environment Variables -`bifrost-gateway` ships with some implicit defaults that can be adjusted via env variables below. +`rainbow` ships with some implicit defaults that can be adjusted via env variables below. - [Configuration](#configuration) - [`KUBO_RPC_URL`](#kubo_rpc_url) diff --git a/main.go b/main.go index 6caa3db..02a4ba5 100644 --- a/main.go +++ b/main.go @@ -41,7 +41,7 @@ func main() { Usage: "specify the listen address for the gateway endpoint", }, &cli.IntFlag{ - Name: "api-port", + Name: "ctl-port", Value: 8081, Usage: "specify the api listening address for the internal control api", }, @@ -146,7 +146,7 @@ func main() { go func() { defer wg.Done() - log.Printf("API port exposed at http://127.0.0.1:%d", apiPort) + log.Printf("CTL port exposed at http://127.0.0.1:%d", apiPort) log.Printf("Metrics exposed at http://127.0.0.1:%d/debug/metrics/prometheus", apiPort) err := apiSrv.ListenAndServe() if err != nil && !errors.Is(err, http.ErrServerClosed) {