Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/v1alpha1/datasource_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ type OpenStackDatasource struct {
Cinder CinderDatasource `json:"cinder"`

// How often to sync the datasource.
// +kubebuilder:default="60s"
// +kubebuilder:default="600s"
SyncInterval metav1.Duration `json:"syncInterval"`

// Keystone credentials secret ref for authenticating with openstack.
Expand Down
12 changes: 12 additions & 0 deletions helm/bundles/cortex-nova/templates/datasources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand All @@ -110,6 +111,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand All @@ -133,6 +135,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand All @@ -156,6 +159,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand All @@ -179,6 +183,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand All @@ -202,6 +207,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand All @@ -225,6 +231,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand All @@ -248,6 +255,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand All @@ -271,6 +279,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand All @@ -294,6 +303,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand All @@ -317,6 +327,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand All @@ -340,6 +351,7 @@ spec:
{{- end }}
type: openstack
openstack:
syncInterval: 600s
secretRef:
name: cortex-nova-openstack-keystone
namespace: {{ .Release.Namespace }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ spec:
type: object
x-kubernetes-map-type: atomic
syncInterval:
default: 60s
default: 600s
description: How often to sync the datasource.
type: string
type:
Expand Down
Loading