mirror of
https://github.com/kyverno/kyverno.git
synced 2025-01-20 18:52:16 +00:00
revert data loaction
Signed-off-by: Yuvraj <yuvraj.yad001@gmail.com>
This commit is contained in:
parent
b3ab74d8b6
commit
a0e8a6a0d5
3 changed files with 2 additions and 65 deletions
|
@ -1,36 +1,5 @@
|
||||||
# Contributing to Kyverno
|
# Contributing to Kyverno
|
||||||
|
|
||||||
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
||||||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
||||||
|
|
||||||
|
|
||||||
- [Introduction](#introduction)
|
|
||||||
- [Contributing Code](#contributing-code)
|
|
||||||
- [Disclosing vulnerabilities](#disclosing-vulnerabilities)
|
|
||||||
- [Code Style](#code-style)
|
|
||||||
- [Pull request procedure](#pull-request-procedure)
|
|
||||||
- [Communication](#communication)
|
|
||||||
- [Conduct](./CODE_OF_CONDUCT.md)
|
|
||||||
|
|
||||||
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
||||||
|
|
||||||
## Introduction
|
|
||||||
|
|
||||||
Please note: We take Kyverno security and our users' trust very
|
|
||||||
seriously. If you believe you have found a security issue in Kyverno,
|
|
||||||
please responsibly disclose by contacting us at support@nirmata.com.
|
|
||||||
|
|
||||||
First: if you're unsure or afraid of anything, just ask or submit the issue or
|
|
||||||
pull request anyways. You won't be yelled at for giving it your best effort. The
|
|
||||||
worst that can happen is that you'll be politely asked to change something. We
|
|
||||||
appreciate any sort of contributions, and don't want a wall of rules to get in
|
|
||||||
the way of that.
|
|
||||||
|
|
||||||
That said, if you want to ensure that a pull request is likely to be merged,
|
|
||||||
talk to us! You can find out our thoughts and ensure that your contribution
|
|
||||||
won't clash or be obviated by Kyverno normal direction. A great way to
|
|
||||||
do this is via the [Kyverno Community](https://app.slack.com/client/T09NY5SBT/CLGR9BJU9)
|
|
||||||
|
|
||||||
## Contributing Code
|
## Contributing Code
|
||||||
|
|
||||||
Unless you are fixing a known bug, we **strongly** recommend discussing it with
|
Unless you are fixing a known bug, we **strongly** recommend discussing it with
|
||||||
|
@ -59,36 +28,4 @@ not use GitHub issues.
|
||||||
|
|
||||||
## Code Style
|
## Code Style
|
||||||
|
|
||||||
We follow the community provided standard [code structure](https://github.com/golang-standards/project-layout). Please follow these guidelines when formatting source code:
|
We follow the community provided standard [code structure](https://github.com/golang-standards/project-layout).
|
||||||
|
|
||||||
- Go code should match the output of `gofmt -s`
|
|
||||||
|
|
||||||
## Pull request procedure
|
|
||||||
|
|
||||||
To make a pull request, you will need a GitHub account; if you are unclear on
|
|
||||||
this process, see GitHub's documentation on
|
|
||||||
[forking](https://help.github.com/articles/fork-a-repo) and
|
|
||||||
[pull requests](https://help.github.com/articles/using-pull-requests). Pull
|
|
||||||
requests should be targeted at the `master` branch. Before creating a pull
|
|
||||||
request, go through this checklist:
|
|
||||||
|
|
||||||
1. Create a feature branch off of `master` so that changes do not get mixed up.
|
|
||||||
1. [Rebase](http://git-scm.com/book/en/Git-Branching-Rebasing) your local
|
|
||||||
changes against the `master` branch.
|
|
||||||
1. Run the full project test suite with the `go test ./...` (or equivalent)
|
|
||||||
command and confirm that it passes.
|
|
||||||
1. Run `gofmt -s` (if the project is written in Go).
|
|
||||||
1. Ensure that each commit has a subsystem prefix (ex: `controller:`).
|
|
||||||
|
|
||||||
Pull requests will be treated as "review requests," and maintainers will give
|
|
||||||
feedback on the style and substance of the patch.
|
|
||||||
|
|
||||||
Normally, all pull requests must include tests that test your change.
|
|
||||||
Occasionally, a change will be very difficult to test for. In those cases,
|
|
||||||
please include a note in your commit message explaining why.
|
|
||||||
|
|
||||||
## Communication
|
|
||||||
|
|
||||||
We use [Slack](https://app.slack.com/client/T09NY5SBT/CLGR9BJU9). You are welcome to drop in and ask
|
|
||||||
questions, discuss bugs, etc.
|
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
data "github.com/nirmata/kyverno/x/data"
|
data "github.com/nirmata/kyverno/api"
|
||||||
|
|
||||||
"github.com/golang/glog"
|
"github.com/golang/glog"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue