Merge pull request #3846 from irbekrm/reinstate_line_wrapping
Reinstate line wrapping
This commit is contained in:
commit
2abafa18be
@ -10,6 +10,7 @@ RELEASE_NAME = "cert-manager"
|
||||
|
||||
RELEASE_NAMESPACE = "cert-manager"
|
||||
|
||||
# This genrule removes helm annotations.
|
||||
genrule(
|
||||
name = "crds.nohelm.yaml",
|
||||
srcs = [
|
||||
@ -57,6 +58,7 @@ genrule(
|
||||
]),
|
||||
)
|
||||
|
||||
# This genrule removes helm annotations.
|
||||
genrule(
|
||||
name = "unlicensed.nohelm",
|
||||
srcs = [
|
||||
|
||||
2
go.mod
2
go.mod
@ -45,7 +45,7 @@ require (
|
||||
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
|
||||
google.golang.org/api v0.15.0
|
||||
gopkg.in/ini.v1 v1.52.0 // indirect
|
||||
gopkg.in/yaml.v2 v2.3.0
|
||||
gopkg.in/yaml.v2 v2.4.0
|
||||
gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c // indirect
|
||||
k8s.io/api v0.19.0
|
||||
k8s.io/apiextensions-apiserver v0.19.0
|
||||
|
||||
3
go.sum
3
go.sum
@ -983,8 +983,9 @@ gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=
|
||||
gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
|
||||
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
|
||||
gopkg.in/yaml.v3 v3.0.0-20190905181640-827449938966/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||
gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c h1:grhR+C34yXImVGp7EzNk+DTIk+323eIUWOmEevy6bDo=
|
||||
|
||||
@ -3033,8 +3033,8 @@ def go_repositories():
|
||||
build_file_generation = "on",
|
||||
build_file_proto_mode = "disable",
|
||||
importpath = "gopkg.in/yaml.v2",
|
||||
sum = "h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=",
|
||||
version = "v2.3.0",
|
||||
sum = "h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=",
|
||||
version = "v2.4.0",
|
||||
)
|
||||
|
||||
go_repository(
|
||||
|
||||
@ -28,6 +28,8 @@ import (
|
||||
|
||||
var removeKeys = []string{}
|
||||
|
||||
// This code generates regular cert-manager deployment manifest from
|
||||
// one created for Helm by removing Helm-specific annotations.
|
||||
func main() {
|
||||
loadVariant()
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user