mirror of
https://github.com/cnrancher/kube-explorer.git
synced 2025-09-02 23:17:41 +00:00
Compare commits
4 Commits
v0.3.4-rc1
...
v0.3.4-rc4
Author | SHA1 | Date | |
---|---|---|---|
|
2b39db9f07 | ||
|
4dc1acb1f2 | ||
|
989d087b99 | ||
|
c214e6ba6a |
410
.drone.yml
410
.drone.yml
@@ -1,309 +1,165 @@
|
|||||||
---
|
type: docker
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: default-amd64
|
name: push
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
os: linux
|
os: linux
|
||||||
arch: amd64
|
arch: amd64
|
||||||
|
|
||||||
steps:
|
trigger:
|
||||||
- name: build
|
event:
|
||||||
pull: default
|
exclude:
|
||||||
image: rancher/dapper:v0.5.8
|
- promote
|
||||||
commands:
|
include:
|
||||||
- dapper ci
|
- push
|
||||||
privileged: true
|
- pull_request
|
||||||
volumes:
|
|
||||||
- name: docker
|
|
||||||
path: /var/run/docker.sock
|
|
||||||
when:
|
|
||||||
ref:
|
|
||||||
include:
|
|
||||||
- "refs/heads/main"
|
|
||||||
- "refs/heads/v*"
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- pull_request
|
|
||||||
|
|
||||||
- name: release
|
|
||||||
pull: default
|
|
||||||
image: rancher/dapper:v0.5.8
|
|
||||||
commands:
|
|
||||||
- dapper ci
|
|
||||||
privileged: true
|
|
||||||
environment:
|
|
||||||
CROSS: 1
|
|
||||||
volumes:
|
|
||||||
- name: docker
|
|
||||||
path: /var/run/docker.sock
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: stage-binaries-head
|
|
||||||
image: rancher/dapper:v0.5.8
|
|
||||||
commands:
|
|
||||||
- "cp -r ./bin/kube-explorer ./package/"
|
|
||||||
when:
|
|
||||||
ref:
|
|
||||||
include:
|
|
||||||
- "refs/heads/main"
|
|
||||||
- "refs/heads/v*"
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
- name: stage-binaries
|
|
||||||
image: rancher/dapper:v0.5.8
|
|
||||||
commands:
|
|
||||||
- "cp -r ./bin/kube-explorer-linux-amd64 ./package/kube-explorer"
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: github_binary_release
|
|
||||||
pull: default
|
|
||||||
image: plugins/github-release
|
|
||||||
settings:
|
|
||||||
api_key:
|
|
||||||
from_secret: github_token
|
|
||||||
checksum:
|
|
||||||
- sha256
|
|
||||||
files:
|
|
||||||
- "bin/*"
|
|
||||||
title: "${DRONE_TAG}"
|
|
||||||
overwrite: true
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: docker-publish-head
|
|
||||||
pull: default
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
dockerfile: package/Dockerfile
|
|
||||||
context: package/
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
repo: cnrancher/kube-explorer
|
|
||||||
tag: head-linux-amd64
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
when:
|
|
||||||
ref:
|
|
||||||
include:
|
|
||||||
- "refs/heads/main"
|
|
||||||
- "refs/heads/v*"
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
- name: image-scan-head
|
|
||||||
image: aquasec/trivy
|
|
||||||
commands:
|
|
||||||
- trivy image --no-progress --ignore-unfixed --severity HIGH,CRITICAL --scanners vuln --exit-code 1 cnrancher/kube-explorer:head-linux-amd64
|
|
||||||
volumes:
|
|
||||||
- name: docker
|
|
||||||
path: /var/run/docker.sock
|
|
||||||
when:
|
|
||||||
ref:
|
|
||||||
include:
|
|
||||||
- "refs/heads/main"
|
|
||||||
- "refs/heads/v*"
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
- name: docker-publish
|
|
||||||
pull: default
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
dockerfile: package/Dockerfile
|
|
||||||
context: package/
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
repo: cnrancher/kube-explorer
|
|
||||||
tag: ${DRONE_TAG}-linux-amd64
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: docker
|
- name: docker
|
||||||
host:
|
host:
|
||||||
path: /var/run/docker.sock
|
path: /var/run/docker.sock
|
||||||
|
|
||||||
node:
|
node:
|
||||||
instance: agent-amd64
|
instance: agent-amd64
|
||||||
|
|
||||||
trigger:
|
|
||||||
ref:
|
|
||||||
include:
|
|
||||||
- "refs/heads/main"
|
|
||||||
- "refs/heads/v*"
|
|
||||||
- "refs/tags/*"
|
|
||||||
event:
|
|
||||||
exclude:
|
|
||||||
- promote
|
|
||||||
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
name: default-arm64
|
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: arm64
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build
|
- name: build
|
||||||
pull: default
|
image: rancher/dapper:v0.6.0
|
||||||
image: rancher/dapper:v0.5.8
|
commands:
|
||||||
commands:
|
- dapper ci
|
||||||
- dapper ci
|
environment:
|
||||||
privileged: true
|
CROSS: "${DRONE_BUILD_EVENT}"
|
||||||
volumes:
|
privileged: true
|
||||||
- name: docker
|
volumes:
|
||||||
path: /var/run/docker.sock
|
- name: docker
|
||||||
when:
|
path: /var/run/docker.sock
|
||||||
ref:
|
|
||||||
include:
|
|
||||||
- "refs/heads/main"
|
|
||||||
- "refs/heads/v*"
|
|
||||||
- "refs/tags/*"
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: stage-binaries
|
- name: image-scan-head
|
||||||
image: rancher/dapper:v0.5.8
|
image: aquasec/trivy
|
||||||
commands:
|
commands:
|
||||||
- "cp -r ./bin/* ./package/"
|
- trivy image --no-progress --ignore-unfixed --severity HIGH,CRITICAL --scanners vuln --exit-code 1 cnrancher/kube-explorer:${DRONE_COMMIT:0:7}
|
||||||
when:
|
volumes:
|
||||||
ref:
|
- name: docker
|
||||||
include:
|
path: /var/run/docker.sock
|
||||||
- "refs/heads/main"
|
when:
|
||||||
- "refs/heads/v*"
|
event:
|
||||||
- "refs/tags/*"
|
- push
|
||||||
event:
|
ref:
|
||||||
- push
|
include:
|
||||||
- tag
|
- "refs/heads/main"
|
||||||
|
- "refs/heads/v*"
|
||||||
|
|
||||||
- name: docker-publish-head
|
- name: install-buildx-support
|
||||||
pull: default
|
image: tonistiigi/binfmt
|
||||||
image: plugins/docker
|
privileged: true
|
||||||
settings:
|
entrypoint:
|
||||||
build_args:
|
- /usr/bin/binfmt
|
||||||
- ARCH=arm64
|
command:
|
||||||
dockerfile: package/Dockerfile
|
- --install
|
||||||
context: package/
|
- all
|
||||||
password:
|
when:
|
||||||
from_secret: docker_password
|
event:
|
||||||
repo: cnrancher/kube-explorer
|
- push
|
||||||
tag: head-linux-arm64
|
ref:
|
||||||
username:
|
include:
|
||||||
from_secret: docker_username
|
- "refs/heads/main"
|
||||||
when:
|
- "refs/heads/v*"
|
||||||
ref:
|
|
||||||
include:
|
|
||||||
- "refs/heads/main"
|
|
||||||
- "refs/heads/v*"
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
- name: docker-publish
|
- name: docker-publish
|
||||||
pull: default
|
image: thegeeklab/drone-docker-buildx
|
||||||
image: plugins/docker
|
privileged: true
|
||||||
settings:
|
settings:
|
||||||
build_args:
|
platforms: linux/amd64,linux/arm64/v8
|
||||||
- ARCH=arm64
|
dockerfile: package/Dockerfile
|
||||||
dockerfile: package/Dockerfile
|
repo: cnrancher/kube-explorer
|
||||||
context: package/
|
tag: latest
|
||||||
password:
|
username:
|
||||||
from_secret: docker_password
|
from_secret: docker_username
|
||||||
repo: cnrancher/kube-explorer
|
password:
|
||||||
tag: ${DRONE_TAG}-linux-arm64
|
from_secret: docker_password
|
||||||
username:
|
volumes:
|
||||||
from_secret: docker_username
|
- name: docker
|
||||||
when:
|
path: /var/run/docker.sock
|
||||||
event:
|
when:
|
||||||
- tag
|
event:
|
||||||
|
- push
|
||||||
volumes:
|
ref:
|
||||||
- name: docker
|
include:
|
||||||
host:
|
- "refs/heads/main"
|
||||||
path: /var/run/docker.sock
|
- "refs/heads/v*"
|
||||||
|
|
||||||
trigger:
|
|
||||||
ref:
|
|
||||||
include:
|
|
||||||
- "refs/heads/main"
|
|
||||||
- "refs/heads/v*"
|
|
||||||
- "refs/tags/*"
|
|
||||||
event:
|
|
||||||
exclude:
|
|
||||||
- promote
|
|
||||||
|
|
||||||
node:
|
|
||||||
instance: agent-arm64
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
type: docker
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: manifest
|
name: tag
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
os: linux
|
os: linux
|
||||||
arch: amd64
|
arch: amd64
|
||||||
|
|
||||||
steps:
|
trigger:
|
||||||
- name: push-manifest-head
|
event:
|
||||||
image: plugins/manifest
|
exclude:
|
||||||
settings:
|
- promote
|
||||||
ignore_missing: true
|
include:
|
||||||
username:
|
- tag
|
||||||
from_secret: docker_username
|
ref:
|
||||||
password:
|
include:
|
||||||
from_secret: docker_password
|
- "refs/tags/*"
|
||||||
spec: manifest-head.tmpl
|
|
||||||
when:
|
|
||||||
ref:
|
|
||||||
include:
|
|
||||||
- "refs/heads/main"
|
|
||||||
- "refs/heads/v*"
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
- name: push-manifest
|
|
||||||
image: plugins/manifest
|
|
||||||
settings:
|
|
||||||
ignore_missing: true
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
spec: manifest.tmpl
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: docker
|
- name: docker
|
||||||
host:
|
host:
|
||||||
path: /var/run/docker.sock
|
path: /var/run/docker.sock
|
||||||
|
|
||||||
node:
|
node:
|
||||||
instance: agent-amd64
|
instance: agent-amd64
|
||||||
|
|
||||||
trigger:
|
steps:
|
||||||
ref:
|
- name: release
|
||||||
include:
|
image: rancher/dapper:v0.6.0
|
||||||
- "refs/heads/main"
|
commands:
|
||||||
- "refs/heads/v*"
|
- dapper ci
|
||||||
- "refs/tags/*"
|
privileged: true
|
||||||
event:
|
environment:
|
||||||
exclude:
|
CROSS: "${DRONE_BUILD_EVENT}"
|
||||||
- promote
|
volumes:
|
||||||
|
- name: docker
|
||||||
|
path: /var/run/docker.sock
|
||||||
|
|
||||||
depends_on:
|
- name: install-buildx-support
|
||||||
- default-amd64
|
image: tonistiigi/binfmt
|
||||||
- default-arm64
|
privileged: true
|
||||||
|
entrypoint:
|
||||||
|
- /usr/bin/binfmt
|
||||||
|
command:
|
||||||
|
- --install
|
||||||
|
- all
|
||||||
|
|
||||||
...
|
- name: docker-publish
|
||||||
|
image: thegeeklab/drone-docker-buildx
|
||||||
|
privileged: true
|
||||||
|
settings:
|
||||||
|
platforms: linux/amd64,linux/arm64/v8
|
||||||
|
dockerfile: package/Dockerfile
|
||||||
|
repo: cnrancher/kube-explorer
|
||||||
|
tag: ${DRONE_TAG}
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
volumes:
|
||||||
|
- name: docker
|
||||||
|
path: /var/run/docker.sock
|
||||||
|
|
||||||
|
- name: github_binary_release
|
||||||
|
image: plugins/github-release
|
||||||
|
settings:
|
||||||
|
api_key:
|
||||||
|
from_secret: github_token
|
||||||
|
checksum:
|
||||||
|
- sha256
|
||||||
|
files:
|
||||||
|
- "bin/*"
|
||||||
|
title: "${DRONE_TAG}"
|
||||||
|
overwrite: true
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@@ -19,3 +19,5 @@
|
|||||||
/dist
|
/dist
|
||||||
/build
|
/build
|
||||||
*.swp
|
*.swp
|
||||||
|
|
||||||
|
/.vscode
|
||||||
|
@@ -9,7 +9,7 @@ ENV https_proxy=${PROXY} \
|
|||||||
RUN zypper -n install ca-certificates git-core wget curl unzip tar vim less file xz
|
RUN zypper -n install ca-certificates git-core wget curl unzip tar vim less file xz
|
||||||
RUN zypper install -y -f docker
|
RUN zypper install -y -f docker
|
||||||
|
|
||||||
ENV UPX_VERSION 4.0.2
|
ENV UPX_VERSION 4.2.1
|
||||||
RUN curl -sL https://github.com/upx/upx/releases/download/v${UPX_VERSION}/upx-${UPX_VERSION}-${ARCH}_linux.tar.xz | tar xvJf - --strip-components=1 -C /tmp && \
|
RUN curl -sL https://github.com/upx/upx/releases/download/v${UPX_VERSION}/upx-${UPX_VERSION}-${ARCH}_linux.tar.xz | tar xvJf - --strip-components=1 -C /tmp && \
|
||||||
mv /tmp/upx /usr/bin/
|
mv /tmp/upx /usr/bin/
|
||||||
|
|
||||||
@@ -17,7 +17,7 @@ RUN if [ "${ARCH}" == "amd64" ]; then \
|
|||||||
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.54.2; \
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.54.2; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ENV GIT_COMMIT="bcf55b3084dd66ef6236ea6b350d4419c7beb213" \
|
ENV GIT_COMMIT="b5d6adfbc855c3e0ef458e0aa0939c2582b8073f" \
|
||||||
GIT_BRANCH="ke/v0.3" \
|
GIT_BRANCH="ke/v0.3" \
|
||||||
GIT_SOURCE=${GOPATH}/src/github.com/rancher/steve \
|
GIT_SOURCE=${GOPATH}/src/github.com/rancher/steve \
|
||||||
CATTLE_DASHBOARD_UI_VERSION="v2.7.5-kube-explorer-ui-rc7"
|
CATTLE_DASHBOARD_UI_VERSION="v2.7.5-kube-explorer-ui-rc7"
|
||||||
|
@@ -1,12 +0,0 @@
|
|||||||
image: cnrancher/kube-explorer:latest
|
|
||||||
manifests:
|
|
||||||
-
|
|
||||||
image: cnrancher/kube-explorer:head-linux-amd64
|
|
||||||
platform:
|
|
||||||
architecture: amd64
|
|
||||||
os: linux
|
|
||||||
-
|
|
||||||
image: cnrancher/kube-explorer:head-linux-arm64
|
|
||||||
platform:
|
|
||||||
architecture: arm64
|
|
||||||
os: linux
|
|
@@ -1,12 +0,0 @@
|
|||||||
image: cnrancher/kube-explorer:{{build.tag}}
|
|
||||||
manifests:
|
|
||||||
-
|
|
||||||
image: cnrancher/kube-explorer:{{build.tag}}-linux-amd64
|
|
||||||
platform:
|
|
||||||
architecture: amd64
|
|
||||||
os: linux
|
|
||||||
-
|
|
||||||
image: cnrancher/kube-explorer:{{build.tag}}-linux-arm64
|
|
||||||
platform:
|
|
||||||
architecture: arm64
|
|
||||||
os: linux
|
|
@@ -1,4 +1,7 @@
|
|||||||
FROM registry.suse.com/bci/bci-minimal:15.5
|
FROM registry.suse.com/bci/bci-minimal:15.5
|
||||||
|
ARG TARGETARCH
|
||||||
COPY kube-explorer entrypoint.sh /usr/bin/
|
ARG TARGETOS
|
||||||
|
ENV ARCH=${TARGETARCH:-"amd64"} OS=${TARGETOS:-"linux"}
|
||||||
|
COPY package/entrypoint.sh /usr/bin/
|
||||||
|
COPY bin/kube-explorer-${OS}-${ARCH} /usr/bin/kube-explorer
|
||||||
ENTRYPOINT ["entrypoint.sh"]
|
ENTRYPOINT ["entrypoint.sh"]
|
||||||
|
@@ -5,6 +5,7 @@ source $(dirname $0)/version
|
|||||||
|
|
||||||
OS_ARCH_ARG_LINUX="amd64 arm arm64"
|
OS_ARCH_ARG_LINUX="amd64 arm arm64"
|
||||||
OS_ARCH_ARG_DARWIN="amd64 arm64"
|
OS_ARCH_ARG_DARWIN="amd64 arm64"
|
||||||
|
OS_ARCH_ARG_WINDOWS="amd64"
|
||||||
|
|
||||||
LD_INJECT_VALUES="-X github.com/rancher/steve/pkg/version.Version=$VERSION
|
LD_INJECT_VALUES="-X github.com/rancher/steve/pkg/version.Version=$VERSION
|
||||||
-X github.com/rancher/steve/pkg/version.GitCommit=$COMMIT"
|
-X github.com/rancher/steve/pkg/version.GitCommit=$COMMIT"
|
||||||
@@ -13,31 +14,53 @@ LD_INJECT_VALUES="-X github.com/rancher/steve/pkg/version.Version=$VERSION
|
|||||||
|
|
||||||
pushd $GIT_SOURCE
|
pushd $GIT_SOURCE
|
||||||
|
|
||||||
if [ -n "$CROSS" ]; then
|
case "$CROSS" in
|
||||||
for ARCH in ${OS_ARCH_ARG_LINUX}; do
|
"push")
|
||||||
OUTPUT_BIN="bin/kube-explorer-linux-$ARCH"
|
for ARCH in ${OS_ARCH_ARG_LINUX}; do
|
||||||
echo "Building binary for linux/$ARCH..."
|
OUTPUT_BIN="bin/kube-explorer-linux-$ARCH"
|
||||||
GOARCH=$ARCH GOOS=linux CGO_ENABLED=0 go build -tags embed \
|
echo "Building binary for linux/$ARCH..."
|
||||||
-ldflags \
|
GOARCH=$ARCH GOOS=linux CGO_ENABLED=0 go build -tags embed \
|
||||||
"$LD_INJECT_VALUES $LINKFLAGS" \
|
-ldflags \
|
||||||
-o ${OUTPUT_BIN}
|
"$LD_INJECT_VALUES $LINKFLAGS" \
|
||||||
done
|
-o ${OUTPUT_BIN}
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
"tag")
|
||||||
|
for ARCH in ${OS_ARCH_ARG_LINUX}; do
|
||||||
|
OUTPUT_BIN="bin/kube-explorer-linux-$ARCH"
|
||||||
|
echo "Building binary for linux/$ARCH..."
|
||||||
|
GOARCH=$ARCH GOOS=linux CGO_ENABLED=0 go build -tags embed \
|
||||||
|
-ldflags \
|
||||||
|
"$LD_INJECT_VALUES $LINKFLAGS" \
|
||||||
|
-o ${OUTPUT_BIN}
|
||||||
|
done
|
||||||
|
|
||||||
for ARCH in ${OS_ARCH_ARG_DARWIN}; do
|
for ARCH in ${OS_ARCH_ARG_DARWIN}; do
|
||||||
OUTPUT_BIN="bin/kube-explorer-darwin-$ARCH"
|
OUTPUT_BIN="bin/kube-explorer-darwin-$ARCH"
|
||||||
echo "Building binary for darwin/$ARCH..."
|
echo "Building binary for darwin/$ARCH..."
|
||||||
GOARCH=$ARCH GOOS=darwin CGO_ENABLED=0 go build -tags embed \
|
GOARCH=$ARCH GOOS=darwin CGO_ENABLED=0 go build -tags embed \
|
||||||
-ldflags \
|
-ldflags \
|
||||||
"$LD_INJECT_VALUES" \
|
"$LD_INJECT_VALUES" \
|
||||||
-o ${OUTPUT_BIN}
|
-o ${OUTPUT_BIN}
|
||||||
done
|
done
|
||||||
else
|
|
||||||
# only build one for current platform
|
for ARCH in ${OS_ARCH_ARG_WINDOWS}; do
|
||||||
CGO_ENABLED=0 go build -tags embed \
|
OUTPUT_BIN="bin/kube-explorer-windows-$ARCH.exe"
|
||||||
-ldflags \
|
echo "Building binary for windows/$ARCH..."
|
||||||
"$LD_INJECT_VALUES $LINKFLAGS" \
|
GOARCH=$ARCH GOOS=windows CGO_ENABLED=0 go build -tags embed \
|
||||||
-o bin/kube-explorer
|
-ldflags \
|
||||||
fi
|
"$LD_INJECT_VALUES" \
|
||||||
|
-o ${OUTPUT_BIN}
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
# only build one for current platform
|
||||||
|
CGO_ENABLED=0 go build -tags embed \
|
||||||
|
-ldflags \
|
||||||
|
"$LD_INJECT_VALUES $LINKFLAGS" \
|
||||||
|
-o "bin/kube-explorer-$(uname | tr '[:upper:]' '[:lower:]')-${ARCH}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
mkdir -p $DAPPER_SOURCE/bin
|
mkdir -p $DAPPER_SOURCE/bin
|
||||||
|
|
||||||
|
@@ -15,4 +15,3 @@ cp index.html ../index.html
|
|||||||
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
$(dirname $0)/hack_fs $GIT_SOURCE/pkg/ui/ui/
|
|
||||||
|
@@ -1,42 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -ex
|
|
||||||
|
|
||||||
#
|
|
||||||
# find . -type f -name "_*"
|
|
||||||
#
|
|
||||||
function hack_files() {
|
|
||||||
for f in $(find $1 -type f -name "_*"); do
|
|
||||||
name=$(basename $f)
|
|
||||||
updir=$(dirname $f)
|
|
||||||
new_path=$updir/${name:1}
|
|
||||||
echo "move $f $new_path"
|
|
||||||
mv $f $new_path
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
#
|
|
||||||
# find . -type d -name "_*"
|
|
||||||
#
|
|
||||||
function hack_dirs() {
|
|
||||||
for d in $(find $1 -mindepth 1 -maxdepth 1 -type d); do
|
|
||||||
if [[ ! -d $d ]]; then
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
name=$(basename $d)
|
|
||||||
if [[ ${name:0:1} == "_" ]]; then
|
|
||||||
updir=$(dirname $d)
|
|
||||||
new_path=$updir/${name:1}
|
|
||||||
echo "move $d $new_path"
|
|
||||||
mv $d $new_path
|
|
||||||
hack_dirs $new_path
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
hack_dirs $d
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
pushd $1
|
|
||||||
hack_files .
|
|
||||||
hack_dirs .
|
|
||||||
popd
|
|
@@ -5,14 +5,6 @@ source $(dirname $0)/version
|
|||||||
|
|
||||||
pushd $DAPPER_SOURCE
|
pushd $DAPPER_SOURCE
|
||||||
|
|
||||||
if [ -f bin/kube-explorer-linux-${ARCH} ]; then
|
docker build -f package/Dockerfile -t cnrancher/kube-explorer:$VERSION .
|
||||||
# For cross mode
|
|
||||||
cp bin/kube-explorer-linux-${ARCH} package/kube-explorer
|
|
||||||
else
|
|
||||||
# For common mode
|
|
||||||
cp bin/kube-explorer package/
|
|
||||||
fi
|
|
||||||
cd package
|
|
||||||
docker build -f Dockerfile -t cnrancher/kube-explorer:$VERSION .
|
|
||||||
|
|
||||||
popd
|
popd
|
||||||
|
Submodule scripts/steve deleted from 26e14afc0b
Reference in New Issue
Block a user