Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated repo location to controlplaneio #21

Merged
merged 1 commit into from
Nov 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# kubectl-kubesec

[![Build Status](https://travis-ci.org/stefanprodan/kubectl-kubesec.svg?branch=master)](https://travis-ci.org/stefanprodan/kubectl-kubesec)
[![Build Status](https://travis-ci.org/controlplaneio/kubectl-kubesec.svg?branch=master)](https://travis-ci.org/controlplaneio/kubectl-kubesec)

This is a kubectl plugin for scanning Kubernetes pods, deployments, daemonsets and statefulsets with [kubesec.io](https://kubesec.io)

For the admission controller see [kubesec-webhook](https://github.com/stefanprodan/kubesec-webhook)
For the admission controller see [kubesec-webhook](https://github.com/controlplaneio/kubesec-webhook)

### Install

Expand All @@ -21,7 +21,7 @@ For Kubernetes 1.12 or newer:

```bash
mkdir -p ~/.kube/plugins/scan && \
curl -sL https://github.com/stefanprodan/kubectl-kubesec/releases/download/1.0.0/kubectl-kubesec_1.0.0_`uname -s`_amd64.tar.gz | tar xzvf - -C ~/.kube/plugins/scan
curl -sL https://github.com/controlplaneio/kubectl-kubesec/releases/download/1.0.0/kubectl-kubesec_1.0.0_`uname -s`_amd64.tar.gz | tar xzvf - -C ~/.kube/plugins/scan
mv ~/.kube/plugins/scan/scan ~/.kube/plugins/scan/kubectl-scan
export PATH=$PATH:~/.kube/plugins/scan
```
Expand All @@ -30,7 +30,7 @@ For Kubernetes older than 1.12:

```bash
mkdir -p ~/.kube/plugins/scan && \
curl -sL https://github.com/stefanprodan/kubectl-kubesec/releases/download/0.3.1/kubectl-kubesec_0.3.1_`uname -s`_amd64.tar.gz | tar xzvf - -C ~/.kube/plugins/scan
curl -sL https://github.com/controlplaneio/kubectl-kubesec/releases/download/0.3.1/kubectl-kubesec_0.3.1_`uname -s`_amd64.tar.gz | tar xzvf - -C ~/.kube/plugins/scan
```

### Usage
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"flag"
"fmt"
_ "github.com/golang/glog"
"github.com/stefanprodan/kubectl-kubesec/pkg/cmd"
"github.com/controlplaneio/kubectl-kubesec/pkg/cmd"
"os"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/daemonset.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"errors"
"fmt"
"github.com/spf13/cobra"
"github.com/stefanprodan/kubectl-kubesec/pkg/kubesec"
"github.com/controlplaneio/kubectl-kubesec/pkg/kubesec"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"errors"
"fmt"
"github.com/spf13/cobra"
"github.com/stefanprodan/kubectl-kubesec/pkg/kubesec"
"github.com/controlplaneio/kubectl-kubesec/pkg/kubesec"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"errors"
"fmt"
"github.com/spf13/cobra"
"github.com/stefanprodan/kubectl-kubesec/pkg/kubesec"
"github.com/controlplaneio/kubectl-kubesec/pkg/kubesec"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/statefulset.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"errors"
"fmt"
"github.com/spf13/cobra"
"github.com/stefanprodan/kubectl-kubesec/pkg/kubesec"
"github.com/controlplaneio/kubectl-kubesec/pkg/kubesec"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
"fmt"
"github.com/spf13/cobra"
"github.com/stefanprodan/kubectl-kubesec/pkg/version"
"github.com/controlplaneio/kubectl-kubesec/pkg/version"
)

var versionCmd = &cobra.Command{
Expand Down