Kubernetes
  • About
  • 수업준비
    • Cloud9
    • Command-line tools
  • Overview
    • Introduction to Container
      • 실습
    • Basics of Kubernetes
      • 실습
  • Core Concepts
    • Kubernetes API
      • 실습
    • Pod
      • 실습
    • Deployment
      • 실습
    • Service
      • 실습
    • Ingress
      • 실습
    • StatefulSet
      • 실습
    • DaemonSet
      • 실습
    • Job
      • 실습
    • ConfigMap
      • 실습
    • Secrets
      • 실습
    • RBAC
      • 실습
  • Advanced Topics
    • Scheduling
      • 실습
    • Scaling
      • 실습
    • Security
      • 실습
    • Storage
      • 실습
    • DNS
      • 실습
    • Gateway
      • 실습
    • Kubernetes The Hard Way
      • 실습
  • Extras
    • Prometheus
      • 실습
    • Istio (WIP)
      • 실습
    • Envoy (WIP)
      • 실습
    • Operator (WIP)
      • 실습
    • DevOps (Outdated)
      • 실습
    • Ceph
      • 실습
    • Helm
      • 실습
    • Fargate
      • 실습
Powered by GitBook
On this page
  • kubectl
  • eksctl
  • helm
  • jq
  1. 수업준비

Command-line tools

PreviousCloud9NextIntroduction to Container

Last updated 2 years ago

kubectl

curl -LO "https://dl.k8s.io/release/v1.22.1/bin/linux/amd64/kubectl"
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
echo 'source <(kubectl completion bash)' >>~/.bashrc
source <(kubectl completion bash)

eksctl

curl --silent --location "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp
sudo mv /tmp/eksctl /usr/local/bin
echo 'source <(eksctl completion bash)' >>~/.bashrc
source <(eksctl completion bash)

helm

curl -L https://git.io/get_helm.sh | bash -s -- --version v3.8.2

jq

{
    wget -O jq https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64
    chmod +x ./jq
    sudo mv jq /usr/bin
}
Install and Set Up kubectl on LinuxKubernetes
bash auto-completion on LinuxKubernetes
Introduction - eksctl
Helm | Installing Helm
Logo
Logo
Logo
Logo