-
Get the container id of the pod.
$ kubectl get po <pod-id> -o=jsonpath='{.status.containerStatuses[0].containerID}{"\n"}' | awk '{print substr($0, 10, 12);}'
NoteIn my case there is only one container, if there are mulitple container, you can use selectors.
-
Download zookeeper distribution
wget http://apachemirror.wuchna.com/zookeeper/zookeeper-3.4.14/zookeeper-3.4.14.tar.gz
-
Extract distribution
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
version: '3.7' | |
services: | |
zoo1: | |
image: zookeeper:3.4.14 | |
restart: always | |
hostname: zoo1 | |
volumes: | |
- "/opt/docker-volumes/zoo1/data:/data" | |
- "/opt/docker-volumes/zoo1/datalog:/datalog" |
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
apiVersion: kubeadm.k8s.io/v1beta2 | |
bootstrapTokens: | |
- groups: | |
- system:bootstrappers:kubeadm:default-node-token | |
token: abcdef.0123456789abcdef | |
ttl: 24h0m0s | |
usages: | |
- signing | |
- authentication | |
kind: InitConfiguration |
To list Installed plugins
.Linux
code --list-extensions | xargs -L 1 echo code --install-extension
.Windows (PowerShell, e. g. using VSCode's integrated Terminal):
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
# Sample ``local.conf`` for user-configurable variables in ``stack.sh`` | |
# NOTE: Copy this file to the root DevStack directory for it to work properly. | |
# ``local.conf`` is a user-maintained settings file that is sourced from ``stackrc``. | |
# This gives it the ability to override any variables set in ``stackrc``. | |
# Also, most of the settings in ``stack.sh`` are written to only be set if no | |
# value has already been set; this lets ``local.conf`` effectively override the | |
# default values. |
Below are the steps to install maven in ubuntu 18.04 from tar file instead of default maven version for apt repository.
-
Download latest maven distribution from Maven download URL(from here ).
$ wget http://mirrors.estointernet.in/apache/maven/maven-3/3.6.0/binaries/apache-maven-3.6.0-bin.tar.gz
-
Extract distribution.