Skip to content

Commit

Permalink
Merge pull request #46 from ondat/add-ondat-2-8-1
Browse files Browse the repository at this point in the history
Add ondat v2.8.1
  • Loading branch information
DavidMarchant authored Aug 22, 2022
2 parents cc035f2 + 81989bc commit 47850ed
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 17 deletions.
4 changes: 2 additions & 2 deletions charts/component-charts/ondat-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: "v2.8.0"
appVersion: "v2.8.1"
description: Cloud Native storage for containers
name: ondat-operator
version: 0.6.1
version: 0.6.2
keywords:
- storage
- block-storage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,35 @@ spec:
metrics:
description: Metrics feature configuration.
properties:
disabledCollectors:
description: DisabledCollectors is a list of collectors that shall
be disabled. By default, all are enabled.
items:
description: MetricsExporterCollector is the name of a metrics
collector in the metrics-exporter.
enum:
- diskstats
- filesystem
type: string
type: array
enabled:
type: boolean
logLevel:
description: Verbosity of log messages. Accepts go.uber.org/zap
log levels.
enum:
- debug
- info
- warn
- error
- dpanic
- panic
- fatal
type: string
timeout:
description: Timeout in seconds to serve metrics.
minimum: 1
type: integer
type: object
namespace:
description: 'Namespace is the kubernetes Namespace where storageos
Expand Down
18 changes: 10 additions & 8 deletions charts/component-charts/ondat-operator/templates/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ spec:
release: {{ .Release.Name }}
template:
metadata:
annotations:
kubectl.kubernetes.io/default-container: manager
labels:
app: {{ template "storageos.name" . }}
app.kubernetes.io/component: operator
Expand All @@ -40,7 +42,6 @@ spec:
- configMapRef:
name: storageos-related-images
image: "{{ .Values.images.operator.registry}}/{{ .Values.images.operator.image }}:{{ .Values.images.operator.tag }}"
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
path: /healthz
Expand All @@ -57,7 +58,7 @@ spec:
resources:
limits:
cpu: 250m
memory: 200Mi
memory: 512Mi
requests:
cpu: 10m
memory: 100Mi
Expand All @@ -82,12 +83,13 @@ spec:
serviceAccountName: {{ template "storageos.serviceAccountName" . }}
terminationGracePeriodSeconds: 10
topologySpreadConstraints:
- labelSelector:
matchLabels:
app.kubernetes.io/component: operator
maxSkew: 1
topologyKey: kubernetes.io/hostname
whenUnsatisfiable: ScheduleAnyway
- labelSelector:
matchLabels:
app.kubernetes.io/component: operator
app: {{ template "storageos.name" . }}
maxSkew: 1
topologyKey: kubernetes.io/hostname
whenUnsatisfiable: ScheduleAnyway
volumes:
- configMap:
name: storageos-operator
Expand Down
3 changes: 3 additions & 0 deletions charts/component-charts/ondat-operator/templates/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ rules:
- pods/binding
- pods/status
- replicationcontrollers
- resourcequotas
- secrets
- serviceaccounts
- services
Expand Down Expand Up @@ -134,7 +135,9 @@ rules:
- create
- delete
- get
- list
- patch
- watch
- apiGroups:
- apps
resources:
Expand Down
8 changes: 4 additions & 4 deletions charts/component-charts/ondat-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ images:
operator:
registry: docker.io/storageos
image: operator
tag: v2.8.0
tag: v2.8.1
apiManager:
registry: docker.io/storageos
image: api-manager
Expand Down Expand Up @@ -81,19 +81,19 @@ images:
node:
registry: docker.io/storageos
image: node
tag: v2.8.0
tag: v2.8.1
metricsExporter:
registry: docker.io/storageos
image: metrics-exporter
tag: v0.1.6
tag: v0.1.7
nodeManager:
registry: docker.io/storageos
image: node-manager
tag: v0.0.8
portalManager:
registry: docker.io/storageos
image: portal-manager
tag: v1.0.5
tag: v1.0.6
upgradeGuard:
registry: docker.io/storageos
image: upgrade-guard
Expand Down
6 changes: 3 additions & 3 deletions charts/umbrella-charts/ondat/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: "v2.8.0"
appVersion: "v2.8.1"
description: Ondat with in-cluster etcd
name: ondat
version: 0.1.3
version: 0.1.4
keywords:
- ondat
- data
Expand All @@ -14,8 +14,8 @@ sources:
- https://github.com/ondat
dependencies:
- name: ondat-operator
version: 0.6.1
repository: https://ondat.github.io/charts
version: 0.6.2
- name: etcd-cluster-operator
version: 0.1.3
repository: https://ondat.github.io/charts
Expand Down

0 comments on commit 47850ed

Please sign in to comment.