LinuxCommandLibrary

kops

manages production Kubernetes clusters

TLDR

Create cluster

$ kops create cluster --name=[cluster.example.com] --zones=[us-east-1a]
copy
Update cluster
$ kops update cluster [cluster.example.com] --yes
copy
Validate cluster
$ kops validate cluster [cluster.example.com]
copy
Delete cluster
$ kops delete cluster [cluster.example.com] --yes
copy
Edit cluster
$ kops edit cluster [cluster.example.com]
copy
Export kubeconfig
$ kops export kubeconfig [cluster.example.com]
copy

SYNOPSIS

kops command [options]

DESCRIPTION

kops manages production Kubernetes clusters. It creates, updates, and destroys clusters on cloud providers.
The tool handles networking, node groups, and add-ons. It supports AWS, GCE, and other clouds.

PARAMETERS

create cluster

Create cluster configuration.
update cluster
Apply cluster changes.
validate cluster
Verify cluster health.
delete cluster
Delete cluster.
--name NAME
Cluster name.
--zones ZONES
Availability zones.
--yes
Confirm changes.
--help
Display help information.

CAVEATS

Cloud provider credentials needed. DNS configuration required. Production-focused tool.

HISTORY

kops (Kubernetes Operations) was created to help manage production-grade Kubernetes clusters on cloud infrastructure.

SEE ALSO

kubectl(1), eksctl(1), kubeadm(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community