Skip to content

Commit

Permalink
release v1.1.0 (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdheipSingh committed Apr 25, 2023
1 parent 2a5d9f5 commit e2a0030
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -53,7 +53,7 @@ help: ## Display this help.

.PHONY: manifests
manifests: controller-gen ## Generate WebhookConfiguration, ClusterRole and CustomResourceDefinition objects.
$(CONTROLLER_GEN) rbac:roleName=manager-role crd:maxDescLen=0 webhook paths="./..." output:crd:artifacts:config=config/crd/bases
$(CONTROLLER_GEN) crd:generateEmbeddedObjectMeta=true rbac:roleName=manager-role crd:maxDescLen=0 webhook paths="./..." output:crd:artifacts:config=config/crd/bases
$(CONTROLLER_GEN) crd:generateEmbeddedObjectMeta=true crd:maxDescLen=0 paths="./..." output:crd:artifacts:config=chart/templates/crds/

.PHONY: generate
Expand Down
4 changes: 2 additions & 2 deletions chart/Chart.yaml
Expand Up @@ -15,11 +15,11 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.0
version: 0.3.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: v1.0.0
appVersion: v1.1.0
# icon
icon: "https://www.apache.org/logos/res/druid/druid-1.png"
10 changes: 10 additions & 0 deletions examples/tiny-cluster.yaml
Expand Up @@ -279,6 +279,16 @@ spec:
druid.port: 8088
nodeConfigMountPath: "/opt/druid/conf/druid/cluster/query/broker"
replicas: 1
volumeClaimTemplates:
- metadata:
name: data-volume
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 2Gi
storageClassName: standard
runtime.properties: |
druid.service=druid/broker
# HTTP server threads
Expand Down

0 comments on commit e2a0030

Please sign in to comment.