Use the following commands to add the kubectl autocomplete to zsh:
mkdir -p ~/.oh-my-zsh/custom/plugins/kubectl-autocomplete/
kubectl completion zsh > ~/.oh-my-zsh/custom/plugins/kubectl-autocomplete/kubectl-autocomplete.plugin.zsh
#!/bin/sh | |
# Set bash behaviour | |
set -eux | |
# Configure sonar version | |
SONAR_SCANNER_VERSION=4.6.2.2472 | |
# Install dependencies | |
apk add --no-cache \ |
#!/bin/bash | |
# usage: | |
# checker "https://myapp.com" | |
counter=0 | |
while true | |
do | |
counter=$((counter + 1)) | |
status=$(curl -o /dev/null -s -w "%{http_code}\n" ${1}) |
version: '3' | |
# Networks | |
networks: | |
# Internal network | |
internal: | |
driver: bridge | |
# Volumes | |
volumes: |
sudo apt-get update | |
echo 'installing curl' | |
sudo apt install curl -y | |
echo 'installing git' | |
sudo apt install git -y | |
echo "What name do you want to use in GIT user.name?" | |
read git_config_user_name |
<?php | |
$array = array( | |
array('texto'=>'Olá ' . $_POST['nome'] . '!'), | |
array('texto'=>'Bem-vindo(a) ' . $_POST['nome']), | |
array('texto'=>'Tudo bem ' . $_POST['nome']) | |
); | |
echo json_encode($array); |
FROM node:10.15-alpine as base | |
RUN apk --no-cache --virtual build-dependencies add \ | |
python \ | |
make \ | |
g++ \ | |
&& rm -f /var/cache/apk/* \ | |
&& npm config set unsafe-perm true \ | |
&& npm install --quiet node-gyp -g --cache /tmp/empty-cache |