Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Schedules setup #31

Open
clement-igonet opened this issue Jun 25, 2024 · 0 comments · Fixed by seriohub/velero-ui#55
Open

Schedules setup #31

clement-igonet opened this issue Jun 25, 2024 · 0 comments · Fixed by seriohub/velero-ui#55
Labels
enhancement New feature or request

Comments

@clement-igonet
Copy link

clement-igonet commented Jun 25, 2024

From the UI, it would be very usefull to retrieve velero helm values or Schedule manifest for scheduling, in order to keep the link between web UI and velero low level setup.

Example:

  • Schedule manifest:
apiVersion: velero.io/v1
kind: Schedule
(...)
spec:
  schedule: '@daily'
  skipImmediately: false
  template:
    csiSnapshotTimeout: 1h0m0s
    defaultVolumesToRestic: false
    excludedNamespaces:
    - kube-public
    - kube-system
    - velero
    hooks: {}
    includeClusterResources: true
    includedNamespaces:
    - '*'
    includedResources:
    - '*'
    itemOperationTimeout: 0s
    metadata: {}
    snapshotMoveData: true
    snapshotVolumes: true
    storageLocation: default
    ttl: 336h0m0s
  • helm values:
(...)
schedules:
  daily-backup:
    schedule: '@daily'
    template:
      csiSnapshotTimeout: 60m
      defaultVolumesToRestic: false
      excludedNamespaces:
      - kube-public
      - kube-system
      - velero
      includeClusterResources: true
      includedNamespaces:
      - '*'
      includedResources:
      - '*'
      snapshotMoveData: true
      snapshotVolumes: true
      storageLocation: default
      ttl: 336h
@clement-igonet clement-igonet changed the title backup setup Schedules setup Jun 25, 2024
@davideserio davideserio added the enhancement New feature or request label Sep 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants