Skip to content

Commit

Permalink
Disabling MongoDB integration until bitnami/containers#53407 doesn't …
Browse files Browse the repository at this point in the history
…require workarounds on M1-M3 chips.
  • Loading branch information
andream16 committed Nov 4, 2024
1 parent 18924b6 commit 133c2c2
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 27 deletions.
7 changes: 5 additions & 2 deletions deploy/smithy/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ kibana:
tlsEnabled: false

mongodb:
# if set, a MongoDB instance will be deployed
enabled: true
# if set, a MongoDB instance will be deployed.
# Disabled as there's currently an issue with M1-M3 processors and workarounds are necessary
# https://github.com/bitnami/containers/issues/53407
# It's better to stop leveraging MongoDB locally until the issue is resolved.
enabled: false
# auth:
# enabled: true
# usernames: ["consumer-mongodb"]
Expand Down
2 changes: 1 addition & 1 deletion deploy/smithy/values/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ kibana:
tlsEnabled: false

mongodb:
enabled: true
enabled: false
auth:
enabled: true
usernames: ["consumer-mongodb"]
Expand Down
48 changes: 24 additions & 24 deletions deploy/tektoncd/pipeline/templates/customresourcedefinitions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,37 @@ metadata:
helm.sh/chart: '{{ include "tekton.chart" . }}'
pipeline.tekton.dev/release: v0.44.0
version: v0.44.0
name: verificationpolicies.tekton.dev
name: clustertasks.tekton.dev
spec:
conversion:
strategy: Webhook
webhook:
clientConfig:
service:
name: tekton-pipelines-webhook
namespace: tekton-pipelines
conversionReviewVersions:
- v1beta1
group: tekton.dev
names:
categories:
- tekton
- tekton-pipelines
kind: VerificationPolicy
plural: verificationpolicies
singular: verificationpolicy
scope: Namespaced
kind: ClusterTask
plural: clustertasks
singular: clustertask
preserveUnknownFields: false
scope: Cluster
versions:
- name: v1alpha1
- name: v1beta1
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: true
subresources:
status: {}
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
Expand All @@ -43,37 +55,25 @@ metadata:
helm.sh/chart: '{{ include "tekton.chart" . }}'
pipeline.tekton.dev/release: v0.44.0
version: v0.44.0
name: clustertasks.tekton.dev
name: verificationpolicies.tekton.dev
spec:
conversion:
strategy: Webhook
webhook:
clientConfig:
service:
name: tekton-pipelines-webhook
namespace: tekton-pipelines
conversionReviewVersions:
- v1beta1
group: tekton.dev
names:
categories:
- tekton
- tekton-pipelines
kind: ClusterTask
plural: clustertasks
singular: clustertask
preserveUnknownFields: false
scope: Cluster
kind: VerificationPolicy
plural: verificationpolicies
singular: verificationpolicy
scope: Namespaced
versions:
- name: v1beta1
- name: v1alpha1
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: true
subresources:
status: {}
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
Expand Down

0 comments on commit 133c2c2

Please sign in to comment.