mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-13 19:28:55 +00:00
migrate repo
This commit is contained in:
parent
d4c37aebad
commit
2152d354a9
9 changed files with 10 additions and 10 deletions
|
@ -4,7 +4,7 @@ metadata:
|
|||
name: kyverno
|
||||
spec:
|
||||
version: {{ .TagName }}
|
||||
homepage: https://github.com/nirmata/kyverno
|
||||
homepage: https://github.com/kyverno/kyverno
|
||||
platforms:
|
||||
- selector:
|
||||
matchLabels:
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
|
||||
We follow the community provided standard [code structure](https://github.com/golang-standards/project-layout).
|
||||
|
||||
See : https://github.com/nirmata/kyverno#contributing
|
||||
See : https://github.com/kyverno/kyverno#contributing
|
||||
|
|
2
Makefile
2
Makefile
|
@ -12,7 +12,7 @@ REGISTRY?=index.docker.io
|
|||
REPO=$(REGISTRY)/nirmata/kyverno
|
||||
IMAGE_TAG?=$(GIT_VERSION)
|
||||
GOOS ?= $(shell go env GOOS)
|
||||
PACKAGE ?=github.com/nirmata/kyverno
|
||||
PACKAGE ?=github.com/kyverno/kyverno
|
||||
LD_FLAGS="-s -w -X $(PACKAGE)/pkg/version.BuildVersion=$(GIT_VERSION) -X $(PACKAGE)/pkg/version.BuildHash=$(GIT_HASH) -X $(PACKAGE)/pkg/version.BuildTime=$(TIMESTAMP)"
|
||||
|
||||
##################################
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Kyverno - Kubernetes Native Policy Management
|
||||
|
||||
[](https://travis-ci.org/nirmata/kyverno) [](https://goreportcard.com/report/github.com/nirmata/kyverno) 
|
||||
[](https://travis-ci.org/nirmata/kyverno) [](https://goreportcard.com/report/github.com/kyverno/kyverno) 
|
||||
|
||||

|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ keywords:
|
|||
- admissions controller
|
||||
home: https://kyverno.io/
|
||||
sources:
|
||||
- https://github.com/nirmata/kyverno
|
||||
- https://github.com/kyverno/kyverno
|
||||
maintainers:
|
||||
- name: Nirmata
|
||||
url: https://kyverno.io/
|
||||
|
|
|
@ -10,8 +10,8 @@ The Kyverno Command Line Interface (CLI) is designed to validate policies and te
|
|||
You can build the CLI binary locally, then move the binary into a directory in your PATH.
|
||||
|
||||
```bash
|
||||
git clone https://github.com/nirmata/kyverno.git
|
||||
cd github.com/nirmata/kyverno
|
||||
git clone https://github.com/kyverno/kyverno.git
|
||||
cd github.com/kyverno/kyverno
|
||||
make cli
|
||||
mv ./cmd/cli/kubectl-kyverno/kyverno /usr/local/bin/kyverno
|
||||
```
|
||||
|
|
|
@ -19,7 +19,7 @@ func currentDir() (string, error) {
|
|||
return "", nil
|
||||
}
|
||||
|
||||
return filepath.Join(homedir, "github.com/nirmata/kyverno"), nil
|
||||
return filepath.Join(homedir, "github.com/kyverno/kyverno"), nil
|
||||
}
|
||||
|
||||
func Test_Exclude(t *testing.T) {
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
)
|
||||
|
||||
var (
|
||||
projectPath = envOr("PROJECT_PATH", "src/github.com/nirmata/kyverno")
|
||||
projectPath = envOr("PROJECT_PATH", "src/github.com/kyverno/kyverno")
|
||||
)
|
||||
|
||||
// LoadFile loads file in byte buffer
|
||||
|
|
|
@ -52,7 +52,7 @@ kubectl create -f https://github.com/kyverno/kyverno/raw/master/definitions/inst
|
|||
To start applying policies to your cluster, first clone the repo:
|
||||
|
||||
````bash
|
||||
git clone https://github.com/nirmata/kyverno.git
|
||||
git clone https://github.com/kyverno/kyverno.git
|
||||
cd kyverno
|
||||
````
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue