1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-13 19:28:55 +00:00

migrate repo

This commit is contained in:
Shuting Zhao 2020-10-07 15:09:52 -07:00
parent d4c37aebad
commit 2152d354a9
9 changed files with 10 additions and 10 deletions

View file

@ -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:

View file

@ -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

View file

@ -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)"
##################################

View file

@ -1,6 +1,6 @@
# Kyverno - Kubernetes Native Policy Management
[![Build Status](https://travis-ci.org/nirmata/kyverno.svg?branch=master)](https://travis-ci.org/nirmata/kyverno) [![Go Report Card](https://goreportcard.com/badge/github.com/nirmata/kyverno)](https://goreportcard.com/report/github.com/nirmata/kyverno) ![License: Apache-2.0](https://img.shields.io/github/license/nirmata/kyverno?color=blue)
[![Build Status](https://travis-ci.org/nirmata/kyverno.svg?branch=master)](https://travis-ci.org/nirmata/kyverno) [![Go Report Card](https://goreportcard.com/badge/github.com/kyverno/kyverno)](https://goreportcard.com/report/github.com/kyverno/kyverno) ![License: Apache-2.0](https://img.shields.io/github/license/nirmata/kyverno?color=blue)
![logo](documentation/images/Kyverno_Horizontal.png)

View file

@ -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/

View file

@ -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
```

View file

@ -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) {

View file

@ -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

View file

@ -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
````