[OOM-K8S-CERT-EXTERNAL-PROVIDER] Add logging of not supported/overridden CSR info
[oom/platform/cert-service.git] / certServiceK8sExternalProvider / go.mod
1 // ============LICENSE_START=======================================================
2 // oom-certservice-k8s-external-provider
3 // ================================================================================
4 // Copyright (c) 2019 Smallstep Labs, Inc.
5 // Modifications Copyright (C) 2020 Nokia. All rights reserved.
6 // ================================================================================
7 // This source code was copied from the following git repository:
8 // https://github.com/smallstep/step-issuer
9 // The source code was modified for usage in the ONAP project.
10 // ================================================================================
11 // Licensed under the Apache License, Version 2.0 (the "License");
12 // you may not use this file except in compliance with the License.
13 // You may obtain a copy of the License at
14 //
15 //      http://www.apache.org/licenses/LICENSE-2.0
16 //
17 // Unless required by applicable law or agreed to in writing, software
18 // distributed under the License is distributed on an "AS IS" BASIS,
19 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 // See the License for the specific language governing permissions and
21 // limitations under the License.
22 // ============LICENSE_END=========================================================
23 //
24
25 module onap.org/oom-certservice/k8s-external-provider
26
27 go 1.15
28
29 require (
30         github.com/go-logr/logr v0.2.1
31         github.com/go-logr/zapr v0.2.0 // indirect
32         github.com/jetstack/cert-manager v1.0.3
33         github.com/stretchr/testify v1.6.1
34         gonum.org/v1/netlib v0.0.0-20190331212654-76723241ea4e // indirect
35         k8s.io/api v0.19.0
36         k8s.io/apimachinery v0.19.0
37         k8s.io/client-go v0.19.0
38         k8s.io/klog/v2 v2.3.0
39         k8s.io/utils v0.0.0-20200729134348-d5654de09c73
40         sigs.k8s.io/controller-runtime v0.6.2
41 )