Skip to content

Commit

Permalink
Merge branch 'master' into pgmigration-3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
deshpandevlab authored Oct 10, 2024
2 parents b0edc1f + 02508d9 commit 29a9a60
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest

## Tool Versions
KUSTOMIZE_VERSION ?= v5.2.1
CONTROLLER_TOOLS_VERSION ?= v0.13.0
CONTROLLER_TOOLS_VERSION ?= v0.16.3

.PHONY: kustomize
kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary. If wrong version is installed, it will be removed before downloading.
Expand Down
4 changes: 1 addition & 3 deletions bundle/manifests/quayregistries.crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.14.0
controller-gen.kubebuilder.io/version: v0.16.3
name: quayregistries.quay.redhat.com
spec:
group: quay.redhat.com
Expand Down Expand Up @@ -871,7 +871,6 @@ spec:
description: |-
Name of the referent.
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind, uid?
type: string
optional:
description: Specify whether the ConfigMap
Expand Down Expand Up @@ -934,7 +933,6 @@ spec:
description: |-
Name of the referent.
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind, uid?
type: string
optional:
description: Specify whether the Secret or
Expand Down
4 changes: 1 addition & 3 deletions config/crd/bases/quay.redhat.com_quayregistries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.14.0
controller-gen.kubebuilder.io/version: v0.16.3
name: quayregistries.quay.redhat.com
spec:
group: quay.redhat.com
Expand Down Expand Up @@ -871,7 +871,6 @@ spec:
description: |-
Name of the referent.
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind, uid?
type: string
optional:
description: Specify whether the ConfigMap
Expand Down Expand Up @@ -934,7 +933,6 @@ spec:
description: |-
Name of the referent.
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind, uid?
type: string
optional:
description: Specify whether the Secret or
Expand Down
3 changes: 1 addition & 2 deletions controllers/quay/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,7 @@ func (r *QuayRegistryReconciler) checkObjectBucketClaimsAvailable(
return nil
}

r.Log.Info("`ObjectBucketClaim` not found")
return nil
return fmt.Errorf("`ObjectBucketClaim` not found")
}

// checkBuildManagerAvailable verifies if the config bundle contains an entry pointing to the
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: clair-app
spec:
replicas: 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: clair-postgres
spec:
replicas: 2
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ kind: Component
patchesStrategicMerge:
- ./clair.deployment.patch.yaml
components:
- "../base"
- "../base"

0 comments on commit 29a9a60

Please sign in to comment.