You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Basic dependency maintenance
* Use `go tool` for tooling dependencies
* More modern prometheus have less stringent label requirements.
Change to a label name invalid for new prometheuses.
Copy file name to clipboardExpand all lines: docs/modules/ROOT/pages/references/api-reference.adoc
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -407,7 +407,6 @@ The token is stored under the key "token".
407
407
In the case of GitLab, this would be a Project Access Token with read-write access to the repository.
408
408
| *`ciVariables`* __xref:{anchor_prefix}-github-com-projectsyn-lieutenant-operator-api-v1alpha1-envvar[$$EnvVar$$] array__ | CIVariables is a list of key-value pairs that will be set as CI variables in the Git repository.
409
409
410
-
411
410
The variables are not expanded like PodSpec environment variables.
412
411
| *`tenantRef`* __link:https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.20/#localobjectreference-v1-core[$$LocalObjectReference$$]__ | TenantRef references the tenant this repo belongs to
413
412
|===
@@ -452,7 +451,6 @@ The token is stored under the key "token".
452
451
In the case of GitLab, this would be a Project Access Token with read-write access to the repository.
453
452
| *`ciVariables`* __xref:{anchor_prefix}-github-com-projectsyn-lieutenant-operator-api-v1alpha1-envvar[$$EnvVar$$] array__ | CIVariables is a list of key-value pairs that will be set as CI variables in the Git repository.
454
453
455
-
456
454
The variables are not expanded like PodSpec environment variables.
Copy file name to clipboardExpand all lines: generate.go
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@
3
3
4
4
package main
5
5
6
-
//go:generate go run sigs.k8s.io/controller-tools/cmd/controller-gen object:headerFile="hack/boilerplate.go.txt" paths="./..."
7
-
//go:generate go run sigs.k8s.io/controller-tools/cmd/controller-gen rbac:roleName=manager-role webhook paths="./..." output:crd:artifacts:config=${CRD_ROOT_DIR}/bases crd:crdVersions=v1,deprecatedV1beta1CompatibilityPreserveUnknownFields=false
6
+
//go:generate go tool sigs.k8s.io/controller-tools/cmd/controller-gen object:headerFile="hack/boilerplate.go.txt" paths="./..."
7
+
//go:generate go tool sigs.k8s.io/controller-tools/cmd/controller-gen rbac:roleName=manager-role webhook paths="./..." output:crd:artifacts:config=${CRD_ROOT_DIR}/bases crd:crdVersions=v1,deprecatedV1beta1CompatibilityPreserveUnknownFields=false
8
8
9
9
// Generate API reference documentation
10
-
//go:generate go run github.com/elastic/crd-ref-docs --source-path=api/v1alpha1 --config=docs/api-gen-config.yaml --renderer=asciidoctor --templates-dir=docs/api-templates --output-path=${CRD_DOCS_REF_PATH}
10
+
//go:generate go tool github.com/elastic/crd-ref-docs --source-path=api/v1alpha1 --config=docs/api-gen-config.yaml --renderer=asciidoctor --templates-dir=docs/api-templates --output-path=${CRD_DOCS_REF_PATH}
0 commit comments