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

Bump go1.22 and update bootstrap version #155

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ SERVICE_NAME := casskop
BUILD_FOLDER = .
MOUNTDIR = $(PWD)

BOOTSTRAP_IMAGE ?= ghcr.io/cscetbon/casskop-bootstrap:0.1.16
BOOTSTRAP_IMAGE ?= ghcr.io/cscetbon/casskop-bootstrap:0.1.19
TELEPRESENCE_REGISTRY ?= datawire
KUBESQUASH_REGISTRY:=
KUBECONFIG ?= ~/.kube/config
Expand Down
2 changes: 1 addition & 1 deletion api/v2/cassandracluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const (
DefaultReadinessHealthCheckPeriod int32 = 10

defaultCassandraImage = "cassandra:3.11.10"
defaultBootstrapImage = "ghcr.io/cscetbon/casskop-bootstrap:0.1.16"
defaultBootstrapImage = "ghcr.io/cscetbon/casskop-bootstrap:0.1.19"
defaultConfigBuilderImage = "datastax/cass-config-builder:1.0.4"

DefaultBackRestImage = "ghcr.io/cscetbon/instaclustr-icarus:1.1.3"
Expand Down
4 changes: 2 additions & 2 deletions api/v2/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

101 changes: 0 additions & 101 deletions charts/casskop/crds/db.orange.com_cassandrabackups.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,104 +106,3 @@ spec:
type: object
served: true
storage: false
- name: v2
schema:
openAPIV3Schema:
description: CassandraBackup is the Schema for the cassandrabackups API
type: object
required:
- spec
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
type: object
required:
- cassandraCluster
- snapshotTag
- storageLocation
properties:
bandwidth:
description: Specify the bandwidth to not exceed when uploading files to the cloud. Format supported is \d+[KMG] case insensitive. You can use values like 10M (meaning 10MB), 1024, 1024K, 2G, etc...
type: string
cassandraCluster:
description: Name of the CassandraCluster to backup
type: string
concurrentConnections:
description: Maximum number of threads used to download files from the cloud. Defaults to 10
type: integer
format: int32
datacenter:
description: Cassandra DC name to back up, used to find the cassandra nodes in the CassandraCluster
type: string
duration:
description: Specify a duration the backup should try to last. See https://golang.org/pkg/time/#ParseDuration for an exhaustive list of the supported units. You can use values like .25h, 15m, 900s all meaning 15 minutes
type: string
entities:
description: Database entities to backup, it might be either only keyspaces or only tables prefixed by their respective keyspace, e.g. 'k1,k2' if one wants to backup whole keyspaces or 'ks1.t1,ks2.t2' if one wants to restore specific tables. These formats are mutually exclusive so 'k1,k2.t2' is invalid. An empty field will backup all keyspaces
type: string
schedule:
description: Specify a schedule to assigned to the backup. The schedule doesn't enforce anything so if you schedule multiple backups around the same time they would conflict. See https://godoc.org/github.com/robfig/cron for more information regarding the supported formats
type: string
secret:
description: Name of Secret to use when accessing cloud storage providers
type: string
snapshotTag:
description: name of snapshot to make so this snapshot will be uploaded to storage location. If not specified, the name of snapshot will be automatically generated and it will have name 'autosnap-milliseconds-since-epoch'
type: string
storageLocation:
description: URI for the backup target location e.g. s3 bucket, filepath
type: string
status:
type: object
properties:
condition:
description: BackRestCondition describes the observed state of a Restore at a certain point
type: object
required:
- type
properties:
failureCause:
type: array
items:
type: object
properties:
message:
description: message explaining the error
type: string
source:
description: hostame of a node where this error has occurred
type: string
lastTransitionTime:
type: string
type:
type: string
coordinatorMember:
description: Name of the pod the restore operation is executed on
type: string
id:
description: unique identifier of an operation, a random id is assigned to each operation after a request is submitted, from caller's perspective, an id is sent back as a response to his request so he can further query state of that operation, referencing id, by operations/{id} endpoint
type: string
progress:
description: Progress is a percentage, 100% means the operation is completed, either successfully or with errors
type: string
timeCompleted:
type: string
timeCreated:
type: string
timeStarted:
type: string
served: true
storage: true
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
Loading
Loading