Skip to content

Commit

Permalink
Move to github.com/jetstack/cert-manager repo
Browse files Browse the repository at this point in the history
  • Loading branch information
munnerz committed Nov 3, 2017
1 parent 16e0770 commit fa7e052
Show file tree
Hide file tree
Showing 121 changed files with 362 additions and 243 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ image: golang:1.8-alpine

variables:
DOCKER_DRIVER: overlay
PKG_PATH: github.com/jetstack-experimental/cert-manager
PKG_PATH: github.com/jetstack/cert-manager

services:
- docker:1.12-dind
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go_import_path: github.com/jetstack-experimental/cert-manager
go_import_path: github.com/jetstack/cert-manager

jobs:
include:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.acmesolver
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ ADD _build/cert-manager-acmesolver-linux-amd64 /usr/bin/acmesolver
ENTRYPOINT ["/usr/bin/acmesolver"]
ARG VCS_REF
LABEL org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/jetstack-experimental/cert-manager" \
org.label-schema.vcs-url="https://github.com/jetstack/cert-manager" \
org.label-schema.license="Apache-2.0"
2 changes: 1 addition & 1 deletion Dockerfile.controller
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ ADD _build/cert-manager-controller-linux-amd64 /usr/bin/cert-manager
ENTRYPOINT ["/usr/bin/cert-manager"]
ARG VCS_REF
LABEL org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/jetstack-experimental/cert-manager" \
org.label-schema.vcs-url="https://github.com/jetstack/cert-manager" \
org.label-schema.license="Apache-2.0"
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ACCOUNT=jetstackexperimental
ACCOUNT=jetstack
APP_NAME=cert-manager
REGISTRY=docker.io
REGISTRY=quay.io

PACKAGE_NAME=github.com/jetstack-experimental/cert-manager
PACKAGE_NAME=github.com/jetstack/cert-manager
GO_VERSION=1.8

GOOS := linux
Expand Down Expand Up @@ -60,7 +60,7 @@ build_%: depend version
CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) go build \
-a -tags netgo \
-o ${BUILD_DIR}/${APP_NAME}-$*-$(GOOS)-$(GOARCH) \
-ldflags "-X github.com/jetstack-experimental/cert-manager/pkg/util.AppGitState=${GIT_STATE} -X github.com/jetstack-experimental/cert-manager/pkg/util.AppGitCommit=${GIT_COMMIT} -X github.com/jetstack-experimental/cert-manager/pkg/util.AppVersion=${APP_VERSION}" \
-ldflags "-X github.com/jetstack/cert-manager/pkg/util.AppGitState=${GIT_STATE} -X github.com/jetstack/cert-manager/pkg/util.AppGitCommit=${GIT_COMMIT} -X github.com/jetstack/cert-manager/pkg/util.AppVersion=${APP_VERSION}" \
./cmd/$*

go_fmt:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# cert-manager [![Build Status](https://travis-ci.org/jetstack-experimental/cert-manager.svg?branch=master)](https://travis-ci.org/jetstack-experimental/cert-manager)
# cert-manager [![Build Status](https://travis-ci.org/jetstack/cert-manager.svg?branch=master)](https://travis-ci.org/jetstack/cert-manager)

cert-manager is a Kubernetes add-on to automate the management and issuance of
TLS certificates from various issuing sources.
Expand Down Expand Up @@ -61,15 +61,15 @@ repository.
## Troubleshooting

If you encounter any issues whilst using cert-manager, and your issue is not
documented, please [file an issue](https://github.com/jetstack-experimental/cert-manager/issues).
documented, please [file an issue](https://github.com/jetstack/cert-manager/issues).

## Contributing

We welcome pull requests with open arms! There's a lot of work to do here, and
we're especially concerned with ensuring the longevity and reliability of the
project.

Please take a look at our [issue tracker](https://github.com/jetstack-experimental/cert-manager/issues)
Please take a look at our [issue tracker](https://github.com/jetstack/cert-manager/issues)
if you are unsure where to start with getting involved!

We also use the #kube-lego channel on kubernetes.slack.com for chat relating to
Expand All @@ -79,5 +79,5 @@ Developer documentation should be available soon at [docs/devel](docs/devel).

## Changelog

The [list of releases](https://github.com/jetstack-experimental/cert-manager/releases)
The [list of releases](https://github.com/jetstack/cert-manager/releases)
is the best place to look for information on changes between releases.
2 changes: 1 addition & 1 deletion cmd/acmesolver/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"flag"
"log"

"github.com/jetstack-experimental/cert-manager/pkg/issuer/acme/http/solver"
"github.com/jetstack/cert-manager/pkg/issuer/acme/http/solver"
)

// acmesolver solves ACME http-01 challenges. This is intended to run as a pod
Expand Down
16 changes: 8 additions & 8 deletions cmd/controller/app/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ import (
"k8s.io/client-go/tools/leaderelection/resourcelock"
"k8s.io/client-go/tools/record"

"github.com/jetstack-experimental/cert-manager/cmd/controller/app/options"
clientset "github.com/jetstack-experimental/cert-manager/pkg/client/clientset/versioned"
intscheme "github.com/jetstack-experimental/cert-manager/pkg/client/clientset/versioned/scheme"
informers "github.com/jetstack-experimental/cert-manager/pkg/client/informers/externalversions"
"github.com/jetstack-experimental/cert-manager/pkg/controller"
"github.com/jetstack-experimental/cert-manager/pkg/controller/clusterissuers"
"github.com/jetstack-experimental/cert-manager/pkg/issuer"
kubeinformers "github.com/jetstack-experimental/cert-manager/third_party/k8s.io/client-go/informers"
"github.com/jetstack/cert-manager/cmd/controller/app/options"
clientset "github.com/jetstack/cert-manager/pkg/client/clientset/versioned"
intscheme "github.com/jetstack/cert-manager/pkg/client/clientset/versioned/scheme"
informers "github.com/jetstack/cert-manager/pkg/client/informers/externalversions"
"github.com/jetstack/cert-manager/pkg/controller"
"github.com/jetstack/cert-manager/pkg/controller/clusterissuers"
"github.com/jetstack/cert-manager/pkg/issuer"
kubeinformers "github.com/jetstack/cert-manager/third_party/k8s.io/client-go/informers"
)

const controllerAgentName = "cert-manager-controller"
Expand Down
4 changes: 2 additions & 2 deletions cmd/controller/app/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/spf13/pflag"

"github.com/jetstack-experimental/cert-manager/pkg/util"
"github.com/jetstack/cert-manager/pkg/util"
)

type ControllerOptions struct {
Expand Down Expand Up @@ -36,7 +36,7 @@ const (
)

var (
defaultACMEHTTP01SolverImage = fmt.Sprintf("jetstackexperimental/cert-manager-acmesolver:%s", util.AppVersion)
defaultACMEHTTP01SolverImage = fmt.Sprintf("quay.io/jetstack/cert-manager-acmesolver:%s", util.AppVersion)
)

func NewControllerOptions() *ControllerOptions {
Expand Down
4 changes: 2 additions & 2 deletions cmd/controller/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (

"github.com/golang/glog"

_ "github.com/jetstack-experimental/cert-manager/pkg/issuer/acme"
"github.com/jetstack-experimental/cert-manager/pkg/logs"
_ "github.com/jetstack/cert-manager/pkg/issuer/acme"
"github.com/jetstack/cert-manager/pkg/logs"
)

func main() {
Expand Down
16 changes: 8 additions & 8 deletions cmd/controller/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import (
utilerrors "k8s.io/apimachinery/pkg/util/errors"
_ "k8s.io/client-go/plugin/pkg/client/auth"

"github.com/jetstack-experimental/cert-manager/cmd/controller/app"
"github.com/jetstack-experimental/cert-manager/cmd/controller/app/options"
_ "github.com/jetstack-experimental/cert-manager/pkg/controller/certificates"
_ "github.com/jetstack-experimental/cert-manager/pkg/controller/clusterissuers"
_ "github.com/jetstack-experimental/cert-manager/pkg/controller/issuers"
_ "github.com/jetstack-experimental/cert-manager/pkg/issuer/acme"
_ "github.com/jetstack-experimental/cert-manager/pkg/issuer/ca"
"github.com/jetstack-experimental/cert-manager/pkg/util"
"github.com/jetstack/cert-manager/cmd/controller/app"
"github.com/jetstack/cert-manager/cmd/controller/app/options"
_ "github.com/jetstack/cert-manager/pkg/controller/certificates"
_ "github.com/jetstack/cert-manager/pkg/controller/clusterissuers"
_ "github.com/jetstack/cert-manager/pkg/controller/issuers"
_ "github.com/jetstack/cert-manager/pkg/issuer/acme"
_ "github.com/jetstack/cert-manager/pkg/issuer/ca"
"github.com/jetstack/cert-manager/pkg/util"
)

type CertManagerControllerOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion contrib/charts/cert-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The following tables lists the configurable parameters of the Drupal chart and t

| Parameter | Description | Default |
| ---------------------- | --------------------------------------- | ---------------------------------------------- |
| `image.repository` | Image repository | `jetstackexperimental/cert-manager-controller` |
| `image.repository` | Image repository | `quay.io/jetstack/cert-manager-controller` |
| `image.tag` | Image tag | `canary` |
| `image.pullPolicy` | Image pull policy | `Always` |
| `replicaCount` | Number of cert-manager replicas | `1` |
Expand Down
2 changes: 1 addition & 1 deletion contrib/charts/cert-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
replicaCount: 1

image:
repository: jetstackexperimental/cert-manager-controller
repository: quay.io/jetstack/cert-manager-controller
tag: v0.1.1
pullPolicy: Always

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/cert-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ spec:
spec:
containers:
- name: cert-manager
image: jetstackexperimental/cert-manager-controller:canary
image: quay.io/jetstack/cert-manager-controller:canary
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion docs/user-guides/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ To deploy the latest version of cert-manager using Helm, run:
$ helm install --name cert-manager --namespace kube-system contrib/charts/cert-manager
```

By default, it will be configured to fulfil `Certificate` resources in all namespaces. There are a number of options you can customise when deploying, as detailed in [the chart itself](https://github.com/jetstack-experimental/cert-manager/tree/master/contrib/charts/cert-manager).
By default, it will be configured to fulfil `Certificate` resources in all namespaces. There are a number of options you can customise when deploying, as detailed in [the chart itself](../../contrib/charts/cert-manager).
4 changes: 2 additions & 2 deletions hack/cherry-pick-pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Cherry pick of ${PULLSUBJ} on ${rel}.
$(printf '%s\n' "${SUBJECTS[@]}")
EOF

hub pull-request -F "${prtext}" -h "${GITHUB_USER}:${NEWBRANCH}" -b "jetstack-experimental:${rel}"
hub pull-request -F "${prtext}" -h "${GITHUB_USER}:${NEWBRANCH}" -b "jetstack:${rel}"
}

git checkout -b "${NEWBRANCHUNIQ}" "${BRANCH}"
Expand All @@ -148,7 +148,7 @@ cleanbranch="${NEWBRANCHUNIQ}"
gitamcleanup=true
for pull in "${PULLS[@]}"; do
echo "+++ Downloading patch to /tmp/${pull}.patch (in case you need to do this again)"
curl -o "/tmp/${pull}.patch" -sSL "https://github.com/jetstack-experimental/cert-manager/pull/${pull}.patch"
curl -o "/tmp/${pull}.patch" -sSL "https://github.com/jetstack/cert-manager/pull/${pull}.patch"
echo
echo "+++ About to attempt cherry pick of PR. To reattempt:"
echo " $ git am -3 /tmp/${pull}.patch"
Expand Down
4 changes: 2 additions & 2 deletions hack/update-client-gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SCRIPT_ROOT=$(dirname ${BASH_SOURCE})/..
CODEGEN_PKG=${CODEGEN_PKG:-$(cd ${SCRIPT_ROOT}; ls -d -1 ./vendor/k8s.io/code-generator 2>/dev/null || echo ../code-generator)}

${CODEGEN_PKG}/generate-groups.sh "deepcopy,defaulter,client,informer,lister" \
github.com/jetstack-experimental/cert-manager/pkg/client github.com/jetstack-experimental/cert-manager/pkg/apis \
github.com/jetstack/cert-manager/pkg/client github.com/jetstack/cert-manager/pkg/apis \
certmanager:v1alpha1 \
--output-base "${GOPATH}/src/" \
--go-header-file ${SCRIPT_ROOT}/hack/boilerplate.go.txt
Expand All @@ -21,6 +21,6 @@ ${GOPATH}/bin/informer-gen \
--input-dirs "k8s.io/api/extensions/v1beta1" \
--versioned-clientset-package "k8s.io/client-go/kubernetes" \
--listers-package "k8s.io/client-go/listers" \
--output-package "github.com/jetstack-experimental/cert-manager/third_party/k8s.io/client-go/informers" \
--output-package "github.com/jetstack/cert-manager/third_party/k8s.io/client-go/informers" \
--go-header-file ${SCRIPT_ROOT}/hack/boilerplate.go.txt \
--single-directory
2 changes: 1 addition & 1 deletion labels.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
repo: jetstack-experimental/cert-manager
repo: jetstack/cert-manager
labels:
- name: approved
color: 0ffa16
Expand Down
55 changes: 55 additions & 0 deletions pkg/api/register.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package api

import (
"k8s.io/apimachinery/pkg/apimachinery/announced"
"k8s.io/apimachinery/pkg/apimachinery/registered"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/runtime/serializer"

"github.com/jetstack/cert-manager/pkg/apis/certmanager/install"
)

var (
groupFactoryRegistry = make(announced.APIGroupFactoryRegistry)
// Registry is an instance of an API registry.
Registry = registered.NewOrDie("")
// Scheme for API object types
Scheme = runtime.NewScheme()
// ParameterCodec handles versioning of objects that are converted to query parameters.
ParameterCodec = runtime.NewParameterCodec(Scheme)
// Codecs for creating a server config
Codecs = serializer.NewCodecFactory(Scheme)
)

func init() {
install.Install(groupFactoryRegistry, Registry, Scheme)

// we need to add the options to empty v1
// TODO fix the server code to avoid this
metav1.AddToGroupVersion(Scheme, schema.GroupVersion{Version: "v1"})

// TODO: keep the generic API server from wanting this
unversioned := schema.GroupVersion{Group: "", Version: "v1"}
Scheme.AddUnversionedTypes(unversioned,
&metav1.Status{},
&metav1.APIVersions{},
&metav1.APIGroupList{},
&metav1.APIGroup{},
&metav1.APIResourceList{},
)
}
4 changes: 2 additions & 2 deletions pkg/apis/certmanager/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"k8s.io/apimachinery/pkg/apimachinery/registered"
"k8s.io/apimachinery/pkg/runtime"

"github.com/jetstack-experimental/cert-manager/pkg/apis/certmanager"
"github.com/jetstack-experimental/cert-manager/pkg/apis/certmanager/v1alpha1"
"github.com/jetstack/cert-manager/pkg/apis/certmanager"
"github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha1"
)

// Install registers the API group and adds types to a scheme
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/certmanager/v1alpha1/doc.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// +k8s:deepcopy-gen=package,register
// +k8s:conversion-gen=github.com/jetstack-experimental/cert-manager/pkg/apis/certmanager
// +k8s:conversion-gen=github.com/jetstack/cert-manager/pkg/apis/certmanager
// +k8s:openapi-gen=true
// +k8s:defaulter-gen=TypeMeta

Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/certmanager/v1alpha1/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ limitations under the License.
package v1alpha1

import (
"github.com/jetstack-experimental/cert-manager/pkg/apis/certmanager"
"github.com/jetstack/cert-manager/pkg/apis/certmanager"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/clientset/versioned/clientset.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package versioned

import (
glog "github.com/golang/glog"
certmanagerv1alpha1 "github.com/jetstack-experimental/cert-manager/pkg/client/clientset/versioned/typed/certmanager/v1alpha1"
certmanagerv1alpha1 "github.com/jetstack/cert-manager/pkg/client/clientset/versioned/typed/certmanager/v1alpha1"
discovery "k8s.io/client-go/discovery"
rest "k8s.io/client-go/rest"
flowcontrol "k8s.io/client-go/util/flowcontrol"
Expand Down
6 changes: 3 additions & 3 deletions pkg/client/clientset/versioned/fake/clientset_generated.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ limitations under the License.
package fake

import (
clientset "github.com/jetstack-experimental/cert-manager/pkg/client/clientset/versioned"
certmanagerv1alpha1 "github.com/jetstack-experimental/cert-manager/pkg/client/clientset/versioned/typed/certmanager/v1alpha1"
fakecertmanagerv1alpha1 "github.com/jetstack-experimental/cert-manager/pkg/client/clientset/versioned/typed/certmanager/v1alpha1/fake"
clientset "github.com/jetstack/cert-manager/pkg/client/clientset/versioned"
certmanagerv1alpha1 "github.com/jetstack/cert-manager/pkg/client/clientset/versioned/typed/certmanager/v1alpha1"
fakecertmanagerv1alpha1 "github.com/jetstack/cert-manager/pkg/client/clientset/versioned/typed/certmanager/v1alpha1/fake"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/watch"
"k8s.io/client-go/discovery"
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/clientset/versioned/fake/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.
package fake

import (
certmanagerv1alpha1 "github.com/jetstack-experimental/cert-manager/pkg/apis/certmanager/v1alpha1"
certmanagerv1alpha1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha1"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
runtime "k8s.io/apimachinery/pkg/runtime"
schema "k8s.io/apimachinery/pkg/runtime/schema"
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/clientset/versioned/scheme/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.
package scheme

import (
certmanagerv1alpha1 "github.com/jetstack-experimental/cert-manager/pkg/apis/certmanager/v1alpha1"
certmanagerv1alpha1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha1"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
runtime "k8s.io/apimachinery/pkg/runtime"
schema "k8s.io/apimachinery/pkg/runtime/schema"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ limitations under the License.
package v1alpha1

import (
v1alpha1 "github.com/jetstack-experimental/cert-manager/pkg/apis/certmanager/v1alpha1"
scheme "github.com/jetstack-experimental/cert-manager/pkg/client/clientset/versioned/scheme"
v1alpha1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha1"
scheme "github.com/jetstack/cert-manager/pkg/client/clientset/versioned/scheme"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
types "k8s.io/apimachinery/pkg/types"
watch "k8s.io/apimachinery/pkg/watch"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ limitations under the License.
package v1alpha1

import (
v1alpha1 "github.com/jetstack-experimental/cert-manager/pkg/apis/certmanager/v1alpha1"
"github.com/jetstack-experimental/cert-manager/pkg/client/clientset/versioned/scheme"
v1alpha1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha1"
"github.com/jetstack/cert-manager/pkg/client/clientset/versioned/scheme"
serializer "k8s.io/apimachinery/pkg/runtime/serializer"
rest "k8s.io/client-go/rest"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ limitations under the License.
package v1alpha1

import (
v1alpha1 "github.com/jetstack-experimental/cert-manager/pkg/apis/certmanager/v1alpha1"
scheme "github.com/jetstack-experimental/cert-manager/pkg/client/clientset/versioned/scheme"
v1alpha1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha1"
scheme "github.com/jetstack/cert-manager/pkg/client/clientset/versioned/scheme"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
types "k8s.io/apimachinery/pkg/types"
watch "k8s.io/apimachinery/pkg/watch"
Expand Down
Loading

0 comments on commit fa7e052

Please sign in to comment.