Skip to content

Commit

Permalink
Release 0.0.9 - Go Mod and Dockerfile Update (#291)
Browse files Browse the repository at this point in the history
* go modules update

* add icon

* update dockerfile

* fix tests

* update helm version
  • Loading branch information
AdheipSingh authored May 31, 2022
1 parent 27c0fde commit 264bcfa
Show file tree
Hide file tree
Showing 7 changed files with 581 additions and 125 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.16 as builder
FROM golang:1.17 as builder

WORKDIR /workspace

Expand Down
6 changes: 4 additions & 2 deletions chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +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.1.2
version: 0.1.3

# 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: 0.0.8
appVersion: 0.0.9
# icon
icon: "https://www.apache.org/logos/res/druid/druid-1.png"
96 changes: 95 additions & 1 deletion chart/templates/crds/druid.apache.org_druids.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,16 @@ spec:
failureThreshold:
format: int32
type: integer
grpc:
properties:
port:
format: int32
type: integer
service:
type: string
required:
- port
type: object
httpGet:
properties:
host:
Expand Down Expand Up @@ -1725,6 +1735,16 @@ spec:
failureThreshold:
format: int32
type: integer
grpc:
properties:
port:
format: int32
type: integer
service:
type: string
required:
- port
type: object
httpGet:
properties:
host:
Expand Down Expand Up @@ -1791,6 +1811,10 @@ spec:
type: integer
nodeConfigMountPath:
type: string
nodeSelector:
additionalProperties:
type: string
type: object
nodeType:
type: string
persistentVolumeClaim:
Expand Down Expand Up @@ -1904,6 +1928,14 @@ spec:
items:
type: string
type: array
allocatedResources:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
capacity:
additionalProperties:
anyOf:
Expand Down Expand Up @@ -1936,6 +1968,8 @@ spec:
type: array
phase:
type: string
resizeStatus:
type: string
type: object
type: object
type: array
Expand Down Expand Up @@ -2017,6 +2051,16 @@ spec:
failureThreshold:
format: int32
type: integer
grpc:
properties:
port:
format: int32
type: integer
service:
type: string
required:
- port
type: object
httpGet:
properties:
host:
Expand Down Expand Up @@ -2364,6 +2408,16 @@ spec:
failureThreshold:
format: int32
type: integer
grpc:
properties:
port:
format: int32
type: integer
service:
type: string
required:
- port
type: object
httpGet:
properties:
host:
Expand Down Expand Up @@ -2600,6 +2654,14 @@ spec:
items:
type: string
type: array
allocatedResources:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
capacity:
additionalProperties:
anyOf:
Expand Down Expand Up @@ -2632,6 +2694,8 @@ spec:
type: array
phase:
type: string
resizeStatus:
type: string
type: object
type: object
type: array
Expand Down Expand Up @@ -3382,6 +3446,16 @@ spec:
failureThreshold:
format: int32
type: integer
grpc:
properties:
port:
format: int32
type: integer
service:
type: string
required:
- port
type: object
httpGet:
properties:
host:
Expand Down Expand Up @@ -3700,7 +3774,7 @@ spec:
type: array
startScript:
type: string
startUpProbes:
startUpProbe:
properties:
exec:
properties:
Expand All @@ -3712,6 +3786,16 @@ spec:
failureThreshold:
format: int32
type: integer
grpc:
properties:
port:
format: int32
type: integer
service:
type: string
required:
- port
type: object
httpGet:
properties:
host:
Expand Down Expand Up @@ -3906,6 +3990,14 @@ spec:
items:
type: string
type: array
allocatedResources:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
capacity:
additionalProperties:
anyOf:
Expand Down Expand Up @@ -3938,6 +4030,8 @@ spec:
type: array
phase:
type: string
resizeStatus:
type: string
type: object
type: object
type: array
Expand Down
2 changes: 1 addition & 1 deletion controllers/druid/testdata/broker-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ metadata:
nodeSpecUniqueStr: druid-druid-test-brokers
component: broker
annotations:
druidOpResourceHash: ZzOn5v/f82XpT1su/DEQzCViuKg=
druidOpResourceHash: gfGJ6aviJkM512x1ltsWOty2y5M=
spec:
podManagementPolicy: Parallel
replicas: 2
Expand Down
Loading

0 comments on commit 264bcfa

Please sign in to comment.