Skip to content

Commit 201b488

Browse files
authored
update version (#6)
* update version * update names * update drone pipeline
1 parent b0ff383 commit 201b488

File tree

9 files changed

+16
-15
lines changed

9 files changed

+16
-15
lines changed

.drone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
kind: pipeline
3-
type: docker
3+
type: kubernetes
44
name: default
55

66
steps:

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ksec
22

3-
[![Build Status](https://cloud.drone.io/api/badges/10gen-ops/ksec/status.svg)](https://cloud.drone.io/10gen-ops/ksec)
3+
[![Build Status](https://cloud.drone.io/api/badges/kanopy-platform/ksec/status.svg)](https://cloud.drone.io/kanopy-platform/ksec)
44

55
A command line tool that simplifies the management of Kubernetes Secrets.
66
- Easily set and unset k8s Secret keys
@@ -9,17 +9,17 @@ A command line tool that simplifies the management of Kubernetes Secrets.
99

1010
## Installation
1111

12-
Compiled binaries can be found in the [GitHub releases](https://github.com/10gen-ops/ksec/releases).
12+
Compiled binaries can be found in the [GitHub releases](https://github.com/kanopy-platform/ksec/releases).
1313

1414
Install compiled binary as a Helm plugin (requires [Helm](https://docs.helm.sh/using_helm/#installing-helm)).
1515

16-
helm plugin install https://github.com/10gen-ops/ksec
16+
helm plugin install https://github.com/kanopy-platform/ksec
1717

18-
Please Note: This may not work on Windows if you have spaces in your `HELM_HOME` path. You can instead download the windows executable from the [latest release](https://github.com/10gen-ops/ksec/releases/latest).
18+
Please Note: This may not work on Windows if you have spaces in your `HELM_HOME` path. You can instead download the windows executable from the [latest release](https://github.com/kanopy-platform/ksec/releases/latest).
1919

2020
Install from source (requires [golang](https://golang.org/doc/install#install)).
2121

22-
go get github.com/10gen-ops/ksec/cmd/...
22+
go get github.com/kanopy-platform/ksec/cmd/...
2323

2424
## Usage
2525
```

cmd/ksec/get.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"fmt"
66

7-
"github.com/10gen-ops/ksec/pkg/models"
7+
"github.com/kanopy-platform/ksec/pkg/models"
88
"github.com/spf13/cobra"
99
)
1010

cmd/ksec/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
1010
_ "k8s.io/client-go/plugin/pkg/client/auth/oidc"
1111

12-
"github.com/10gen-ops/ksec/pkg/models"
13-
"github.com/10gen-ops/ksec/pkg/version"
12+
"github.com/kanopy-platform/ksec/pkg/models"
13+
"github.com/kanopy-platform/ksec/pkg/version"
1414
"github.com/spf13/cobra"
1515
"github.com/spf13/viper"
1616
)

cmd/ksec/main_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"strings"
88
"testing"
99

10-
"github.com/10gen-ops/ksec/pkg/models"
11-
"github.com/10gen-ops/ksec/pkg/version"
10+
"github.com/kanopy-platform/ksec/pkg/models"
11+
"github.com/kanopy-platform/ksec/pkg/version"
1212
"github.com/spf13/cobra"
1313
)
1414

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/10gen-ops/ksec
1+
module github.com/kanopy-platform/ksec
22

33
go 1.17
44

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

33
// Version sets the release version for ksec
4-
const Version = "0.1.4"
4+
const Version = "0.1.5"

plugin.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
---
12
name: "ksec"
2-
version: "0.1.4"
3+
version: "0.1.5"
34
usage: "Manage Kubernetes Secrets through Helm"
45
description: "Helm plugin that simplifies the management of Kubernetes Secrets"
56
ignoreFlags: false

scripts/install-binary.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ -n "${HELM_LINTER_PLUGIN_NO_INSTALL_HOOK}" ]; then
66
fi
77

88
PROJECT_NAME="ksec"
9-
PROJECT_GH="10gen-ops/$PROJECT_NAME"
9+
PROJECT_GH="kanopy-platform/$PROJECT_NAME"
1010

1111
: ${HELM_PLUGIN_PATH:="$(pwd)/${PROJECT_NAME}"}
1212

0 commit comments

Comments
 (0)