diff --git a/src/ES.Kubernetes.Reflector/Core/Watchers/WatcherBackgroundService.cs b/src/ES.Kubernetes.Reflector/Core/Watchers/WatcherBackgroundService.cs index 6b15cce..bbe1b0d 100644 --- a/src/ES.Kubernetes.Reflector/Core/Watchers/WatcherBackgroundService.cs +++ b/src/ES.Kubernetes.Reflector/Core/Watchers/WatcherBackgroundService.cs @@ -20,7 +20,7 @@ public abstract class WatcherBackgroundService( protected readonly ILogger Logger = logger; protected readonly IMediator Mediator = mediator; - protected int WatcherTimeout => options.CurrentValue.Watcher?.Timeout ?? 1800; + protected int WatcherTimeout => options.CurrentValue.Watcher?.Timeout ?? 3600; protected override async Task ExecuteAsync(CancellationToken stoppingToken) { diff --git a/src/helm/reflector/templates/deployment.yaml b/src/helm/reflector/templates/deployment.yaml index 58d4653..7085512 100644 --- a/src/helm/reflector/templates/deployment.yaml +++ b/src/helm/reflector/templates/deployment.yaml @@ -83,7 +83,7 @@ spec: tolerations: {{- toYaml . | nindent 8 }} {{- end }} - {{ - with .Values.volumes }} + {{- with .Values.volumes }} volumes: {{- toYaml . | nindent 8}} {{- end }} diff --git a/src/helm/reflector/values.yaml b/src/helm/reflector/values.yaml index fa8a8f1..14f9b78 100644 --- a/src/helm/reflector/values.yaml +++ b/src/helm/reflector/values.yaml @@ -117,11 +117,6 @@ topologySpreadConstraints: [] priorityClassName: "" -#mount external persistent/ephemeral storage to required locations if readOnlyRootFileSystem=true -volumes: - - name: tmp - emptyDir: {} - -volumeMounts: - - name: tmp - mountPath: /tmp \ No newline at end of file +volumes: [] + +volumeMounts: [] \ No newline at end of file