From 6636cd9722feb83ce0488ebacc71ec4f1faaa4c8 Mon Sep 17 00:00:00 2001 From: Qasim Sarfraz Date: Wed, 26 Apr 2023 11:30:11 +0200 Subject: [PATCH] readme: Improve project title --- .github/workflows/kubectl-aks.yml | 2 +- README.md | 4 ++-- cmd/root.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/kubectl-aks.yml b/.github/workflows/kubectl-aks.yml index 654c6b5..5d5ea0e 100644 --- a/.github/workflows/kubectl-aks.yml +++ b/.github/workflows/kubectl-aks.yml @@ -1,4 +1,4 @@ -name: Microsoft AKS CLI kubectl plugin CI +name: Azure Kubernetes Service kubectl plugin CI env: GO_VERSION: 1.17 # TODO: Update AZURE_PREFIX: kubectl-aks-ci diff --git a/README.md b/README.md index 321e6cd..30ddd05 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Kubernetes Service (AKS) CLI kubectl plugin +# Azure Kubernetes Service (AKS) kubectl plugin `kubectl-aks` is a `kubectl` plugin that provides a set of commands that can be used to debug an AKS cluster even when the cluster's control plane is not @@ -61,7 +61,7 @@ kubectl aks version ```bash $ kubectl aks --help -Microsoft AKS CLI kubectl plugin +Azure Kubernetes Service (AKS) kubectl plugin Usage: kubectl-aks [command] diff --git a/cmd/root.go b/cmd/root.go index 6d50aee..1ac4918 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -15,7 +15,7 @@ var commonFlags utils.CommonFlags var rootCmd = &cobra.Command{ Use: "kubectl-aks", - Short: "Microsoft AKS CLI kubectl plugin", + Short: "Azure Kubernetes Service (AKS) kubectl plugin", } func Execute() {