File tree Expand file tree Collapse file tree 7 files changed +26
-20
lines changed
weblogic/kubernetes/docker/build-jdk Expand file tree Collapse file tree 7 files changed +26
-20
lines changed Original file line number Diff line number Diff line change 22 path = confluent/confluent-kafka-script-generator
33 url = https://github.com/codejsha/confluent-kafka-script-generator.git
44[submodule "macos/zsh/plugins "]
5- path = macos/zsh/plugins
6- url = https://github.com/codejsha/zsh-plugins.git
5+ path = macos/zsh/plugins
6+ url = https://github.com/codejsha/zsh-plugins.git
Original file line number Diff line number Diff line change @@ -146,8 +146,11 @@ git checkout -b <branch-name> <commit-hash>
146146
147147# #####################################################################
148148
149+ # ## remove a file history from the git repository
150+
149151git ls-files
150152
153+ export FILE_PATH=" /path/to/file"
151154git filter-branch --force --index-filter \
152155' git rm --cached --ignore-unmatch ${FILE_PATH}' \
153156--prune-empty --tag-name-filter cat -- --all
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ go run main.go
44
55# #####################################################################
66
7+ # ## test
8+
9+ go clean -testcache
10+
711go test ./...
812go test ./... -v -coverprofile=cover.out
913
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ HOSTNAME="$(hostname --fqdn)"
44HOSTIP=" $( ip -4 addr show scope global dev eth0 | grep inet | awk ' {print $2}' | cut -d / -f 1 | sed -n 1p) "
55
66docker container run \
7- --rm \
7+ --rm \
88 --detach \
9- --name kafdrop \
10- --publish 9003:9000 \
9+ --name kafdrop \
10+ --publish 9003:9000 \
1111 --env KAFKA_BROKERCONNECT=" ${HOSTNAME} :9092" \
1212 --env SCHEMAREGISTRY_CONNECT=" http://${HOSTNAME} :8081" \
1313 --env CMD_ARGS=" --message.format=AVRO" \
14- --add-host=" ${HOSTNAME} :${HOSTIP} " \
14+ --add-host=" ${HOSTNAME} :${HOSTIP} " \
1515 obsidiandynamics/kafdrop:latest
Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ HOSTNAME="$(hostname --fqdn)"
44HOSTIP=" $( ip -4 addr show scope global dev eth0 | grep inet | awk ' {print $2}' | cut -d / -f 1 | sed -n 1p) "
55
66docker container run \
7- --rm \
7+ --rm \
88 --detach \
9- --name kafka-ui \
10- --publish 9080:8080 \
11- --env KAFKA_CLUSTERS_0_NAME=" clusterlocal" \
12- --env KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=" ${HOSTNAME} :9092" \
13- --env KAFKA_CLUSTERS_0_SCHEMAREGISTRY=" http://${HOSTNAME} :8081" \
14- --env KAFKA_CLUSTERS_0_KAFKACONNECT_0_NAME=" connect-cluster" \
15- --env KAFKA_CLUSTERS_0_KAFKACONNECT_0_ADDRESS=" http://${HOSTNAME} :8083" \
16- --add-host=" ${HOSTNAME} :${HOSTIP} " \
17- provectuslabs/kafka-ui:latest
9+ --name kafka-ui \
10+ --publish 9080:8080 \
11+ --env KAFKA_CLUSTERS_0_NAME=" clusterlocal" \
12+ --env KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=" ${HOSTNAME} :9092" \
13+ --env KAFKA_CLUSTERS_0_SCHEMAREGISTRY=" http://${HOSTNAME} :8081" \
14+ --env KAFKA_CLUSTERS_0_KAFKACONNECT_0_NAME=" connect-cluster" \
15+ --env KAFKA_CLUSTERS_0_KAFKACONNECT_0_ADDRESS=" http://${HOSTNAME} :8083" \
16+ --add-host=" ${HOSTNAME} :${HOSTIP} " \
17+ provectuslabs/kafka-ui:latest
Original file line number Diff line number Diff line change @@ -7,9 +7,7 @@ eval "$(atuin init zsh --disable-up-arrow)"
77source ${HOMEBREW_PREFIX} /opt/git-extras/share/git-extras/git-extras-completion.zsh
88source ${HOMEBREW_PREFIX} /share/zsh-autosuggestions/zsh-autosuggestions.zsh
99source ${HOMEBREW_PREFIX} /share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
10- source ${HOME} /tools/zsh-plugins/alias.plugin.zsh
11- source ${HOME} /tools/zsh-plugins/docker.plugin.zsh
12- source ${HOME} /tools/zsh-plugins/docker-compose.plugin.zsh
10+ source ${HOME} /tools/zsh-plugins/load-zsh-plugins.sh
1311FPATH=${HOMEBREW_PREFIX} /share/zsh-completions:${FPATH}
1412autoload -Uz compinit
1513compinit -C
@@ -31,6 +29,7 @@ alias vi="nvim"
3129alias vim=" nvim"
3230alias vimdiff=" nvim -d"
3331alias cat=" bat --style=plain --paging=never"
32+ alias fl=" open -b com.binarynights.forklift-setapp"
3433alias mysql=" /opt/homebrew/opt/mysql-client@8.4/bin/mysql"
3534alias mysqldump=" /opt/homebrew/opt/mysql-client@8.4/bin/mysqldump"
3635
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ ENV LANG en_US.UTF-8
2626ENV JAVA_VERSION=11.0.12 \
2727 JAVA_HOME=/usr/java/jdk-11
2828
29- ENV PATH $JAVA_HOME/bin:$PATH
29+ ENV PATH $JAVA_HOME/bin:$PATH
3030
3131COPY --from=builder $JAVA_HOME $JAVA_HOME
3232
You can’t perform that action at this time.
0 commit comments