Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.

Update CRDs, CSVs and Makefile #36

Merged
merged 1 commit into from
Dec 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ run-local:
operator-sdk run --local

generate-crds:
operator-sdk generate k8s && operator-sdk generate crds
operator-sdk generate k8s && operator-sdk generate crds --crd-version v1beta1

lint:
golangci-lint run
Expand Down
501 changes: 251 additions & 250 deletions bundle/0.0.7/k8s.nginx.org_nginxingresscontrollers_crd.yaml

Large diffs are not rendered by default.

501 changes: 251 additions & 250 deletions bundle/0.0.7/manifests/k8s.nginx.org_nginxingresscontrollers_crd.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: ClusterServiceVersion
metadata:
annotations:
alm-examples: >-
[{ "apiVersion": "k8s.nginx.org/v1alpha1", "kind": "NginxIngressController", "metadata": { "name": "my-nginx-ingress-controller", "namespace": "my-nginx-ingress" }, "spec": { "enableCRDs": true, "image": { "pullPolicy": "Always", "repository": "docker.io/nginx/nginx-ingress", "tag": "1.9.1-ubi" }, "nginxPlus": false, "replicas": 1, "serviceType": "NodePort", "type": "deployment" } }]
[{ "apiVersion": "k8s.nginx.org/v1alpha1", "kind": "NginxIngressController", "metadata": { "name": "my-nginx-ingress-controller", "namespace": "my-nginx-ingress" }, "spec": { "enableCRDs": true, "ingressClass": "nginx", "image": { "pullPolicy": "Always", "repository": "docker.io/nginx/nginx-ingress", "tag": "1.9.1-ubi" }, "nginxPlus": false, "replicas": 1, "serviceType": "NodePort", "type": "deployment" } }]
capabilities: Basic Install
categories: Networking
certified: "true"
Expand Down Expand Up @@ -344,7 +344,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: nginx-ingress-operator
image: nginx/nginx-ingress-operator:0.0.7
image: registry.connect.redhat.com/nginx/nginx-ingress-operator:0.0.7
imagePullPolicy: IfNotPresent
name: nginx-ingress-operator
resources: {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: ClusterServiceVersion
metadata:
annotations:
alm-examples: >-
[{ "apiVersion": "k8s.nginx.org/v1alpha1", "kind": "NginxIngressController", "metadata": { "name": "my-nginx-ingress-controller", "namespace": "my-nginx-ingress" }, "spec": { "enableCRDs": true, "image": { "pullPolicy": "Always", "repository": "docker.io/nginx/nginx-ingress", "tag": "1.9.1-ubi" }, "nginxPlus": false, "replicas": 1, "serviceType": "NodePort", "type": "deployment" } }]
[{ "apiVersion": "k8s.nginx.org/v1alpha1", "kind": "NginxIngressController", "metadata": { "name": "my-nginx-ingress-controller", "namespace": "my-nginx-ingress" }, "spec": { "enableCRDs": true, "ingressClass": "nginx", "image": { "pullPolicy": "Always", "repository": "docker.io/nginx/nginx-ingress", "tag": "1.9.1-ubi" }, "nginxPlus": false, "replicas": 1, "serviceType": "NodePort", "type": "deployment" } }]
capabilities: Basic Install
categories: Networking
certified: "true"
Expand Down Expand Up @@ -344,7 +344,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: nginx-ingress-operator
image: nginx/nginx-ingress-operator:0.0.7
image: registry.connect.redhat.com/nginx/nginx-ingress-operator:0.0.7
imagePullPolicy: IfNotPresent
name: nginx-ingress-operator
resources: {}
Expand Down
Loading