forked from arana-db/arana
-
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.
refactor: adjust project structure for docker and command-lines (aran…
- Loading branch information
Showing
20 changed files
with
332 additions
and
242 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,31 @@ | ||
### Go template | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
bin/ | ||
vendor/ | ||
dist/ | ||
|
||
scripts/ | ||
docs/ | ||
|
||
/docker-compose.yaml | ||
.golangci.yml | ||
.licenserc.yaml | ||
.pre-commit-config.yaml | ||
.github/ | ||
justfile | ||
Makefile | ||
README*.md | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# builder layer | ||
FROM golang:1.16-alpine AS builder | ||
|
||
RUN apk add --no-cache upx | ||
|
||
WORKDIR /app | ||
|
||
COPY ./go.mod ./ | ||
COPY ./go.sum ./ | ||
|
||
RUN go mod download | ||
|
||
COPY . . | ||
|
||
# use upx, the binary size is as smaller as better when running as a side-car. | ||
RUN mkdir ./bin && \ | ||
go build -ldflags "-X main.Version=`cat VERSION` -extldflags \"-static\" -s -w" -o ./bin/arana ./cmd && \ | ||
upx -9 -o ./bin/arana-upx ./bin/arana && \ | ||
mv ./bin/arana-upx ./bin/arana | ||
|
||
# runtime layer | ||
FROM alpine:3 | ||
|
||
WORKDIR / | ||
|
||
RUN mkdir -p /etc/arana | ||
|
||
VOLUME /etc/arana | ||
|
||
EXPOSE 13306 | ||
|
||
COPY --from=builder /app/bin/arana /usr/local/bin/ | ||
COPY ./conf/* /etc/arana/ | ||
|
||
CMD ["arana", "start", "-c", "/etc/arana/bootstrap.yaml"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package cmds | ||
|
||
import ( | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
var _handlers []Handler | ||
|
||
// Handler represents the command handler. | ||
type Handler func(cmd *cobra.Command) | ||
|
||
// Handle handles the main command. | ||
func Handle(input Handler) { | ||
_handlers = append(_handlers, input) | ||
} | ||
|
||
// Do process the root command with handlers. | ||
func Do(cmd *cobra.Command) { | ||
for _, it := range _handlers { | ||
it(cmd) | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.