├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── copilot-instructions.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── atlas-image-build.yaml │ ├── build_docker.yaml │ ├── build_example_images.yaml │ ├── dependendy-review.yml │ ├── example-images-scanning.yaml │ ├── govulncheck.yaml │ ├── images-vulnerability-scanning.yaml │ ├── kanister-image-build.yaml │ ├── main.yaml │ ├── ossf-scorecard.yml │ ├── pre-release.yml │ ├── publish_docs.yaml │ ├── published-images-scanning.yaml │ ├── release.yaml │ ├── stale.yaml │ ├── triage-issues.yaml │ └── triage-prs.yaml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── .mergify.yml ├── ADOPTERS.md ├── API.md ├── BUILD.md ├── CHANGELOG.md ├── CHANGELOG_CURRENT.md ├── CODE_OF_CONDUCT.md ├── CODE_REVIEW.md ├── CONTRIBUTING.md ├── DCO ├── Dockerfile.in ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── Makefile.kubebuilder ├── PROJECT ├── README.md ├── RELEASE.md ├── ROADMAP.md ├── SECURITY.md ├── bundle.yaml.in ├── cmd ├── controller │ └── main.go ├── kanctl │ └── main.go ├── kando │ └── main.go └── reposervercontroller │ └── main.go ├── design ├── datamover_abstraction.md ├── images │ ├── datamover │ │ ├── client_secrets.png │ │ ├── client_token.png │ │ ├── dataflow_kopia.png │ │ ├── dataflow_overview.png │ │ ├── datamover_details.png │ │ ├── datamover_layers.png │ │ ├── datamover_profile.png │ │ └── kopia_integration.png │ ├── kopia-CLI-workflow.png │ ├── kopia-SDK-workflow.png │ └── prometheus-metrics-design.png ├── kanister-kopia-integration.md ├── kanister-prometheus-integration.md ├── phase-level-progress-tracking.md ├── progress-tracking.md ├── replace-CLI-with-SDK.md └── update-toc.sh ├── docker ├── build │ ├── Dockerfile │ └── requirements.txt ├── cassandra │ └── Dockerfile ├── controller │ └── Dockerfile ├── couchbase-tools │ └── Dockerfile ├── foundationdb │ └── Dockerfile ├── kafka-adobes3Connector │ └── image │ │ ├── adobe-monitorsink.sh │ │ ├── adobe-monitorsource.sh │ │ ├── adobeSink.Dockerfile │ │ ├── adobeSource.Dockerfile │ │ └── cleans3.py ├── kanister-elasticsearch │ └── image │ │ └── Dockerfile ├── kanister-kubectl │ └── Dockerfile ├── kanister-mongodb-replicaset │ └── image │ │ ├── 90forceyes │ │ ├── Dockerfile │ │ ├── config │ │ ├── gbl_env.sh │ │ └── install.sh ├── kanister-mysql │ └── image │ │ └── Dockerfile ├── license_extractor │ ├── Dockerfile │ ├── README.md │ └── build.sh ├── mongodb-atlas │ └── Dockerfile ├── mongodb │ └── Dockerfile ├── mssql-tools │ └── Dockerfile ├── postgres-kanister-tools │ ├── Dockerfile │ └── requirements.txt ├── postgresql │ ├── Dockerfile │ └── requirements.txt ├── redis-tools │ └── Dockerfile ├── repo-server-controller │ └── Dockerfile └── tools │ └── Dockerfile ├── docs ├── .gitignore ├── .vitepress │ ├── config.mts │ ├── theme │ │ ├── index.ts │ │ └── style.css │ └── version.json ├── api-examples.md ├── architecture.md ├── functions.md ├── generateSidebar.js ├── generatedSidebar.js ├── index.md ├── install.md ├── markdown-examples.md ├── overview.md ├── package.json ├── pnpm-lock.yaml ├── public │ ├── favicon.ico │ ├── kanister-logo.png │ ├── kanister.svg │ ├── kanister_workflow.png │ └── tasks │ │ ├── argo-cron-architecture.png │ │ ├── argo-cron-created-ui-desc.png │ │ ├── argo-cron-created-ui-list.png │ │ ├── argo-default-ui.png │ │ ├── logs-grafana-data-source.png │ │ ├── logs-grafana-login.png │ │ ├── logs-grafana-loki-test.png │ │ ├── logs-kanister-all-logs.png │ │ └── logs-kanister-datapath-logs.png ├── rbac.md ├── tasks │ ├── argo.md │ ├── logs.md │ ├── logs_labels.md │ ├── logs_level.md │ └── scaleworkload.md ├── templates.md ├── tooling.md ├── troubleshooting.md └── tutorial.md ├── examples ├── README.md ├── aws-rds │ ├── aurora-mysql │ │ └── rds-aurora-snap-blueprint.yaml │ └── postgresql │ │ ├── README.md │ │ ├── pgtest │ │ ├── Dockerfile.in │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── build │ │ │ ├── build.sh │ │ │ └── test.sh │ │ ├── cmd │ │ │ └── pgtest │ │ │ │ └── main.go │ │ ├── deploy │ │ │ ├── config.yaml │ │ │ ├── deployment.yaml │ │ │ ├── secret.yaml │ │ │ └── service.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ └── pkg │ │ │ └── version │ │ │ └── version.go │ │ ├── rds-postgres-blueprint.yaml │ │ ├── rds-postgres-dump-blueprint.yaml │ │ └── rds-postgres-snap-blueprint.yaml ├── cassandra │ ├── README.md │ └── cassandra-blueprint.yaml ├── cockroachdb │ ├── README.md │ ├── client-secure.yaml │ └── cockroachdb-blueprint.yaml ├── couchbase │ ├── README.md │ ├── blueprint-v2 │ │ └── couchbase-blueprint.yaml │ ├── couchbase-blueprint.yaml │ └── kanister-clusteradmin-binding.yaml ├── csi-snapshot │ ├── README.md │ └── csi-snapshot-blueprint.yaml ├── elasticsearch-incremental │ ├── README.md │ └── elasticsearch-incremental-blueprint.yaml ├── elasticsearch │ ├── README.md │ ├── blueprint-v2 │ │ └── elasticsearch-blueprint.yaml │ ├── elasticsearch-blueprint.yaml │ └── extraInitContainers.yaml ├── etcd │ └── etcd-in-cluster │ │ ├── k8s │ │ ├── README.md │ │ ├── backup-actionset.yaml │ │ └── etcd-incluster-blueprint.yaml │ │ └── ocp │ │ ├── README.md │ │ ├── backup-actionset.yaml │ │ ├── blueprint-v2 │ │ ├── etcd-incluster-ocp-blueprint.yaml │ │ ├── pv-etcd-backup.yaml │ │ └── pvc-etcd-backup.yaml │ │ ├── cluster-ocp-restore.sh │ │ └── etcd-incluster-ocp-blueprint.yaml ├── foundationdb │ ├── README.md │ ├── blueprint-v2 │ │ └── foundationdb-blueprint.yaml │ ├── foundationdb-blueprint.yaml │ ├── kanister-clusteradmin-binding.yaml │ └── local_cluster.yaml ├── k8ssandra │ ├── README.md │ ├── k8ssandra-blueprint.yaml │ └── kanister-k8ssandra-rbac.yaml ├── kafka │ └── adobe-s3-connector │ │ ├── README.md │ │ ├── adobe-kafkaConfiguration.properties │ │ ├── adobe-s3-sink.properties │ │ ├── adobe-s3-source.properties │ │ ├── kafdrop.yaml │ │ ├── kafka-blueprint.yaml │ │ ├── kafka-bridge.yaml │ │ └── kafka-cluster.yaml ├── maria │ ├── README.md │ ├── blueprint-v2 │ │ └── maria-blueprint.yaml │ └── maria-blueprint.yaml ├── mongo-sidecar │ ├── README.md │ ├── backup-actionset.yaml │ ├── blueprint.yaml │ ├── mongo-cluster.yaml │ ├── restore-actionset.yaml │ ├── s3-location-configmap.yaml │ └── secrets.yaml ├── mongodb-atlas │ ├── README.md │ └── mongodb-atlas-blueprint.yaml ├── mongodb-deploymentconfig │ ├── README.md │ ├── blueprint-v2 │ │ └── mongo-dep-config-blueprint.yaml │ └── mongo-dep-config-blueprint.yaml ├── mongodb-restic │ ├── README.md │ └── mongodb-blueprint.yaml ├── mongodb │ ├── 7.8.10 │ │ └── mongo-blueprint.yaml │ ├── README.md │ ├── blueprint-v2 │ │ └── mongo-blueprint.yaml │ └── mongo-blueprint.yaml ├── mssql │ ├── README.md │ ├── blueprint-v2 │ │ └── mssql-blueprint.yaml │ └── mssql-blueprint.yaml ├── mysql-deploymentconfig │ ├── README.md │ ├── blueprint-v2 │ │ └── mysql-dep-config-blueprint.yaml │ └── mysql-dep-config-blueprint.yaml ├── mysql │ ├── 6.x │ │ ├── README.md │ │ └── mysql-blueprint.yaml │ ├── README.md │ ├── blueprint-v2 │ │ └── mysql-blueprint.yaml │ └── mysql-blueprint.yaml ├── postgres-RDS │ ├── Dockerfile │ ├── README.md │ └── rds-restore-blueprint.yaml ├── postgres-basic-pgdump │ ├── README.md │ ├── backup-actionset.yaml │ ├── blueprint.yaml │ ├── image │ │ ├── 90forceyes │ │ ├── Dockerfile │ │ ├── config │ │ ├── gbl_env.sh │ │ └── install.sh │ ├── restore-actionset.yaml │ ├── s3-location-configmap.yaml │ └── secrets.yaml ├── postgresql-deploymentconfig │ ├── README.md │ ├── blueprint-v2 │ │ └── postgres-dep-config-blueprint.yaml │ └── postgres-dep-config-blueprint.yaml ├── postgresql-ha │ └── hook-blueprint │ │ ├── README.md │ │ └── postgres-ha-hook.yaml ├── postgresql-wale │ ├── README.md │ └── postgresql-blueprint.yaml ├── postgresql │ ├── README.md │ ├── blueprint-v2 │ │ └── postgres-blueprint.yaml │ ├── postgres-blueprint.yaml │ ├── postgres-start-stop-blueprint.yaml │ ├── v10.16.2 │ │ └── postgres-blueprint.yaml │ └── v8.6.4 │ │ └── postgres-blueprint.yaml ├── redis │ ├── README.md │ └── redis-blueprint.yaml └── time-log │ ├── README.md │ ├── backup-actionset.yaml │ ├── blueprint.yaml │ ├── s3-profile.yaml │ ├── secrets.yaml │ └── time-logger-deployment.yaml ├── go.mod ├── go.sum ├── graphic ├── graphic.png └── kanister_workflow.png ├── helm ├── fdb-instance │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── local_cluster.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── fdb-operator │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── crds │ │ │ └── foundationdbcluster.yaml │ │ ├── manager │ │ │ ├── manager.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ └── statefulset.yaml │ │ ├── rbac │ │ │ ├── rbac_role.yaml │ │ │ └── rbac_role_binding.yaml │ │ ├── secrets.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── kanister-operator │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── actionset.yaml │ │ ├── blueprint.yaml │ │ ├── profile.yaml │ │ └── repositoryserver.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── validating-webhook.yaml │ └── values.yaml └── profile │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ └── list-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ └── profile.yaml │ └── values.yaml ├── pkg ├── apis │ └── cr │ │ └── v1alpha1 │ │ ├── deepcopy.go │ │ ├── doc.go │ │ ├── register.go │ │ ├── repositoryserver_types.go │ │ ├── repositoryserver_types_test.go │ │ ├── types.go │ │ ├── types_test.go │ │ └── zz_generated.deepcopy.go ├── app │ ├── app.go │ ├── bp.go │ ├── bp_test.go │ ├── cassandra.go │ ├── cockroachdb.go │ ├── couchbase.go │ ├── csi-snapshot.go │ ├── elasticsearch.go │ ├── foundationdb.go │ ├── helm_app.go │ ├── kafka.go │ ├── mariadb.go │ ├── mongodb-deploymentconfig.go │ ├── mongodb.go │ ├── mssql.go │ ├── mysql-deploymentconfig.go │ ├── mysql.go │ ├── postgresql-deploymentconfig.go │ ├── postgresql.go │ ├── rds_aurora_mysql.go │ ├── rds_postgres.go │ └── utils.go ├── aws │ ├── aws.go │ ├── aws_test.go │ ├── ec2 │ │ └── ec2.go │ ├── rds │ │ └── rds.go │ └── role │ │ └── role.go ├── blueprint │ ├── blueprint.go │ ├── blueprints │ │ ├── cassandra-blueprint.yaml │ │ ├── cockroachdb-blueprint.yaml │ │ ├── couchbase-blueprint.yaml │ │ ├── csi-snapshot-blueprint.yaml │ │ ├── elasticsearch-blueprint.yaml │ │ ├── foundationdb-blueprint.yaml │ │ ├── kafka-blueprint.yaml │ │ ├── maria-blueprint.yaml │ │ ├── mongo-blueprint.yaml │ │ ├── mongo-dep-config-blueprint.yaml │ │ ├── mssql-blueprint.yaml │ │ ├── mysql-blueprint.yaml │ │ ├── mysql-dep-config-blueprint.yaml │ │ ├── pitr-postgres-blueprint.yaml │ │ ├── postgres-blueprint.yaml │ │ ├── postgres-dep-config-blueprint.yaml │ │ ├── rds-aurora-snap-blueprint.yaml │ │ ├── rds-postgres-blueprint.yaml │ │ ├── rds-postgres-dump-blueprint.yaml │ │ └── rds-postgres-snap-blueprint.yaml │ └── validate │ │ ├── validate.go │ │ └── validate_test.go ├── caller │ ├── caller_test.go │ └── frame.go ├── chronicle │ ├── chronicle_pull.go │ ├── chronicle_push.go │ ├── chronicle_push_test.go │ └── chronicle_test.go ├── client │ ├── applyconfiguration │ │ ├── cr │ │ │ └── v1alpha1 │ │ │ │ ├── actionprogress.go │ │ │ │ ├── actionset.go │ │ │ │ ├── actionsetspec.go │ │ │ │ ├── actionsetstatus.go │ │ │ │ ├── actionspec.go │ │ │ │ ├── actionstatus.go │ │ │ │ ├── artifact.go │ │ │ │ ├── blueprint.go │ │ │ │ ├── blueprintaction.go │ │ │ │ ├── blueprintphase.go │ │ │ │ ├── cachesizesettings.go │ │ │ │ ├── configuration.go │ │ │ │ ├── credential.go │ │ │ │ ├── error.go │ │ │ │ ├── keypair.go │ │ │ │ ├── kopiaserversecret.go │ │ │ │ ├── kopiaserversecretref.go │ │ │ │ ├── location.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── phase.go │ │ │ │ ├── phaseprogress.go │ │ │ │ ├── profile.go │ │ │ │ ├── repository.go │ │ │ │ ├── repositoryserver.go │ │ │ │ ├── repositoryserverspec.go │ │ │ │ ├── repositoryserverstatus.go │ │ │ │ ├── server.go │ │ │ │ ├── serverinfo.go │ │ │ │ ├── storage.go │ │ │ │ └── useraccess.go │ │ ├── internal │ │ │ └── internal.go │ │ └── utils.go │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── cr │ │ │ └── v1alpha1 │ │ │ ├── actionset.go │ │ │ ├── blueprint.go │ │ │ ├── cr_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_actionset.go │ │ │ ├── fake_blueprint.go │ │ │ ├── fake_cr_client.go │ │ │ ├── fake_profile.go │ │ │ └── fake_repositoryserver.go │ │ │ ├── generated_expansion.go │ │ │ ├── profile.go │ │ │ └── repositoryserver.go │ ├── informers │ │ └── externalversions │ │ │ ├── cr │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── actionset.go │ │ │ │ ├── blueprint.go │ │ │ │ ├── interface.go │ │ │ │ ├── profile.go │ │ │ │ └── repositoryserver.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ └── cr │ │ └── v1alpha1 │ │ ├── actionset.go │ │ ├── blueprint.go │ │ ├── expansion_generated.go │ │ ├── profile.go │ │ └── repositoryserver.go ├── config │ └── helpers.go ├── consts │ ├── consts.go │ └── utils.go ├── controller │ ├── controller.go │ ├── controller_test.go │ └── metrics.go ├── controllers │ └── repositoryserver │ │ ├── handler.go │ │ ├── repository.go │ │ ├── repository_test.go │ │ ├── repositoryserver_controller.go │ │ ├── repositoryserver_controller_test.go │ │ ├── secrets_manager.go │ │ ├── secrets_manager_test.go │ │ ├── server.go │ │ └── utils.go ├── customresource │ ├── actionset.yaml │ ├── blueprint.yaml │ ├── customresource.go │ ├── embed.go │ ├── profile.yaml │ ├── repositoryserver.yaml │ └── watcher.go ├── datamover │ ├── datamover.go │ ├── datamover_test.go │ ├── profile.go │ ├── profile_test.go │ ├── repository_server.go │ ├── repository_server_test.go │ ├── testutils.go │ └── utils.go ├── discovery │ ├── crd.go │ ├── crd_test.go │ ├── discovery.go │ └── discovery_test.go ├── envdir │ ├── envdir.go │ └── envdir_test.go ├── ephemeral │ ├── envvar.go │ ├── envvar_test.go │ ├── ephemeral.go │ └── ephemeral_test.go ├── errorchecker │ ├── errorchecker.go │ └── errorchecker_test.go ├── eventer │ └── event_recorder.go ├── field │ ├── context.go │ ├── field.go │ ├── field_test.go │ └── linked_field.go ├── filter │ ├── filter.go │ ├── filter_test.go │ ├── unstructured.go │ └── unstructured_test.go ├── format │ ├── format.go │ ├── format_test.go │ └── writer.go ├── function │ ├── args.go │ ├── args_test.go │ ├── backup_data.go │ ├── backup_data_all.go │ ├── backup_data_stats.go │ ├── backup_data_using_kopia_server.go │ ├── checkRepository.go │ ├── copy_volume_data.go │ ├── create_csi_snapshot.go │ ├── create_csi_snapshot_static.go │ ├── create_csi_snapshot_static_test.go │ ├── create_csi_snapshot_test.go │ ├── create_rds_snapshot.go │ ├── data_test.go │ ├── delete_csi_snapshot.go │ ├── delete_csi_snapshot_content.go │ ├── delete_csi_snapshot_content_test.go │ ├── delete_csi_snapshot_test.go │ ├── delete_data.go │ ├── delete_data_all.go │ ├── delete_data_using_kopia_server.go │ ├── delete_rds_snapshot.go │ ├── export_rds_snapshot_location.go │ ├── function_test.go │ ├── kube_exec.go │ ├── kube_exec_all.go │ ├── kube_exec_all_test.go │ ├── kube_exec_test.go │ ├── kube_task.go │ ├── kube_task_test.go │ ├── kubeops.go │ ├── kubeops_test.go │ ├── location_delete.go │ ├── multi_container_run.go │ ├── multi_container_run_test.go │ ├── prepare_data.go │ ├── prepare_data_test.go │ ├── rds_functions_test.go │ ├── rds_utils.go │ ├── restore_csi_snapshot.go │ ├── restore_csi_snapshot_test.go │ ├── restore_data.go │ ├── restore_data_all.go │ ├── restore_data_test.go │ ├── restore_data_using_kopia_server.go │ ├── restore_rds_snapshot.go │ ├── scale_test.go │ ├── scale_workload.go │ ├── scale_workload_test.go │ ├── utils.go │ ├── utils_test.go │ ├── wait.go │ ├── wait_test.go │ ├── waitv2.go │ └── waitv2_test.go ├── handler │ ├── handler.go │ └── healthcheck.go ├── helm │ ├── client.go │ ├── client_test.go │ ├── helm.go │ └── helm_helpers.go ├── jsonpath │ ├── jsonpath.go │ └── jsonpath_test.go ├── kancontroller │ └── kancontroller.go ├── kanctl │ ├── actionset.go │ ├── actionset_test.go │ ├── blueprint.go │ ├── create.go │ ├── error.go │ ├── error_test.go │ ├── helper.go │ ├── kanctl.go │ ├── profile.go │ ├── profile_test.go │ ├── repositoryserver.go │ ├── secrets.go │ └── validate.go ├── kando │ ├── chronicle.go │ ├── chronicle_pull.go │ ├── chronicle_push.go │ ├── kando.go │ ├── location.go │ ├── location_delete.go │ ├── location_pull.go │ ├── location_push.go │ ├── output.go │ ├── process.go │ ├── process_client.go │ ├── process_client_create.go │ ├── process_client_execute.go │ ├── process_client_get.go │ ├── process_client_list.go │ ├── process_client_output.go │ ├── process_client_signal.go │ ├── process_client_test.go │ ├── process_server.go │ ├── process_server_test.go │ ├── processtest.go │ ├── stream.go │ └── stream_push.go ├── kanister.go ├── kanister_test.go ├── kanx │ ├── client.go │ ├── kanx.pb.go │ ├── kanx.proto │ ├── kanx_grpc.pb.go │ ├── kanx_test.go │ ├── logger.go │ ├── logger_test.go │ └── server.go ├── kopia │ ├── cli │ │ ├── args │ │ │ ├── cache_args.go │ │ │ ├── common_args.go │ │ │ └── ephemeral_args.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── internal │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ └── args_test.go │ │ │ ├── kopia.go │ │ │ ├── kopia_test.go │ │ │ ├── location.go │ │ │ ├── location_test.go │ │ │ ├── log │ │ │ │ └── log.go │ │ │ ├── opts │ │ │ │ ├── cache_opts.go │ │ │ │ ├── cache_opts_test.go │ │ │ │ ├── common_opts.go │ │ │ │ ├── common_opts_test.go │ │ │ │ ├── opts.go │ │ │ │ └── opts_test.go │ │ │ ├── path.go │ │ │ ├── path_test.go │ │ │ └── test │ │ │ │ ├── arg_suit.go │ │ │ │ └── command_suite.go │ │ └── repository │ │ │ ├── data_test.go │ │ │ ├── opts.go │ │ │ ├── opts_test.go │ │ │ ├── repository_connect.go │ │ │ ├── repository_connect_server.go │ │ │ ├── repository_connect_server_test.go │ │ │ ├── repository_connect_test.go │ │ │ ├── repository_create.go │ │ │ ├── repository_create_test.go │ │ │ ├── repository_set_parameters.go │ │ │ ├── repository_set_parameters_test.go │ │ │ ├── repository_status.go │ │ │ ├── repository_status_test.go │ │ │ └── storage │ │ │ ├── azure │ │ │ ├── azure.go │ │ │ ├── azure_opts.go │ │ │ ├── azure_opts_test.go │ │ │ └── azure_test.go │ │ │ ├── fs │ │ │ ├── fs.go │ │ │ ├── fs_opts.go │ │ │ ├── fs_opts_test.go │ │ │ └── fs_test.go │ │ │ ├── gcs │ │ │ ├── gcs.go │ │ │ ├── gcs_opts.go │ │ │ ├── gcs_opts_test.go │ │ │ └── gcs_test.go │ │ │ └── s3 │ │ │ ├── s3.go │ │ │ ├── s3_opts.go │ │ │ ├── s3_opts_test.go │ │ │ └── s3_test.go │ ├── command │ │ ├── blob.go │ │ ├── blob_test.go │ │ ├── cache.go │ │ ├── common.go │ │ ├── common_test.go │ │ ├── const.go │ │ ├── helpers.go │ │ ├── maintenance.go │ │ ├── maintenance_test.go │ │ ├── parse_command_output.go │ │ ├── parse_command_output_test.go │ │ ├── policy_set_global.go │ │ ├── policy_show_global.go │ │ ├── policy_test.go │ │ ├── repository.go │ │ ├── repository_test.go │ │ ├── restore.go │ │ ├── restore_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── snapshot.go │ │ ├── snapshot_test.go │ │ └── storage │ │ │ ├── azure_args.go │ │ │ ├── azure_args_test.go │ │ │ ├── filesystem_args.go │ │ │ ├── filesystem_args_test.go │ │ │ ├── gcs_args.go │ │ │ ├── gcs_args_test.go │ │ │ ├── s3_args.go │ │ │ ├── s3_args_test.go │ │ │ ├── secret_utils.go │ │ │ ├── secret_utils_test.go │ │ │ ├── storage_args.go │ │ │ ├── storage_args_test.go │ │ │ └── utils.go │ ├── const.go │ ├── errors │ │ ├── errors.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── maintenance │ │ ├── get_maintenance_owner.go │ │ └── get_maintenance_owner_test.go │ ├── register.go │ ├── repository │ │ ├── client.go │ │ ├── client_test.go │ │ ├── connect.go │ │ ├── connect_or_create.go │ │ └── create.go │ ├── snapshot │ │ ├── snapshot.go │ │ └── stream.go │ └── utils.go ├── ksprig │ ├── fipsonly_sprig.go │ └── fipsonly_sprig_test.go ├── kube │ ├── client.go │ ├── discover.go │ ├── exec.go │ ├── exec_test.go │ ├── fake_pod_command_executor.go │ ├── fake_pod_controller.go │ ├── fake_pod_controller_processor.go │ ├── fips_test.go │ ├── kube_test.go │ ├── kubectl.go │ ├── log_reader.go │ ├── log_reader_test.go │ ├── log_tail.go │ ├── log_tail_test.go │ ├── pod.go │ ├── pod_command_executor.go │ ├── pod_command_executor_processor.go │ ├── pod_command_executor_test.go │ ├── pod_controller.go │ ├── pod_controller_processor.go │ ├── pod_controller_test.go │ ├── pod_file_writer.go │ ├── pod_file_writer_processor.go │ ├── pod_file_writer_test.go │ ├── pod_runner.go │ ├── pod_runner_test.go │ ├── pod_secure_defaults_test.go │ ├── pod_test.go │ ├── pod_writer.go │ ├── pod_writer_test.go │ ├── podinfo.go │ ├── podinfo_test.go │ ├── snapshot │ │ ├── mocks │ │ │ └── mock_snapshotter.go │ │ ├── snapshot.go │ │ ├── snapshot_stable.go │ │ ├── snapshot_test.go │ │ └── types.go │ ├── statefulset_test.go │ ├── testdata │ │ └── ss-1volume-fmt.yaml │ ├── unstructured.go │ ├── unstructured_test.go │ ├── utils.go │ ├── volume │ │ ├── volume.go │ │ └── volume_test.go │ ├── workload.go │ ├── workload_ready_test.go │ └── workload_test.go ├── location │ ├── location.go │ └── location_test.go ├── log │ ├── fluentbit.go │ ├── fluentbit_test.go │ ├── log.go │ ├── log_test.go │ └── logger.go ├── logsafe │ └── logsafe.go ├── metrics │ ├── metrics.go │ └── metrics_test.go ├── objectstore │ ├── aws.go │ ├── bucket.go │ ├── bucket_test.go │ ├── const.go │ ├── directory.go │ ├── helper.go │ ├── models.go │ ├── objectstore.go │ └── objectstore_test.go ├── openshift │ ├── oc.go │ └── openshift.go ├── output │ ├── output.go │ ├── output_test.go │ ├── stream.go │ └── stream_test.go ├── param │ ├── param.go │ ├── param_test.go │ ├── render.go │ └── render_test.go ├── phase.go ├── phase_test.go ├── poll │ ├── poll.go │ └── poll_test.go ├── postgres │ └── client.go ├── progress │ ├── action.go │ ├── action_multi_actions_test.go │ ├── action_multi_phases_test.go │ └── action_single_phase_test.go ├── reconcile │ ├── reconcile.go │ └── reconcile_test.go ├── resource │ ├── resource.go │ └── resource_test.go ├── restic │ ├── restic.go │ ├── restic_test.go │ └── utils.go ├── secrets │ ├── aws.go │ ├── aws_test.go │ ├── azure.go │ ├── azure_test.go │ ├── errors │ │ └── error.go │ ├── filestore.go │ ├── gcp.go │ ├── gcp_test.go │ ├── repositoryserver │ │ ├── aws_secrets.go │ │ ├── aws_secrets_test.go │ │ ├── azure_secrets.go │ │ ├── azure_secrets_test.go │ │ ├── const.go │ │ ├── filestore_secrets.go │ │ ├── gcp_secrets.go │ │ ├── gcp_secrets_test.go │ │ ├── repository_password.go │ │ ├── repository_password_test.go │ │ ├── repository_server_admin_credentials.go │ │ ├── repository_server_admin_credentials_test.go │ │ ├── repository_server_useraccess_credentials.go │ │ ├── s3compliant_secrets.go │ │ ├── s3compliant_secrets_test.go │ │ ├── secrets.go │ │ └── secrets_test.go │ ├── secrets.go │ └── secrets_test.go ├── stream │ └── stream.go ├── testing │ ├── blueprints │ ├── e2e_test.go │ ├── helm │ │ ├── helm_app.go │ │ └── helm_test.go │ ├── integration_register.go │ ├── integration_test.go │ └── testing_test.go ├── testutil │ ├── const.go │ ├── fixture.go │ ├── func.go │ ├── func_test.go │ ├── testutil.go │ └── testutil_test.go ├── tools │ ├── grype_report_parser_tool.go │ ├── grype_report_parser_tool_test.go │ └── testdata │ │ ├── results_invalid.json │ │ ├── results_valid.json │ │ └── results_valid_no_matches.json ├── utils │ ├── utils.go │ └── volumesnapshot │ │ ├── azure-environment.go │ │ ├── const.go │ │ ├── helper_test.go │ │ ├── helpers.go │ │ ├── models.go │ │ ├── tags.go │ │ └── tags_test.go ├── validate │ ├── error.go │ ├── error_test.go │ ├── validate.go │ └── validate_test.go ├── validatingwebhook │ ├── blueprint_handler.go │ ├── repositoryserver_handler.go │ └── utils.go ├── version │ └── version.go └── virtualfs │ ├── dir_entry.go │ ├── directory.go │ ├── directory_test.go │ ├── file.go │ ├── file_reader.go │ ├── symlink.go │ ├── virtualfs.go │ └── virtualfs_test.go ├── releasenotes ├── README.md └── notes │ ├── deprecate-boringcrypto-3bf65cde59c99ce6.yaml │ ├── deprecate-volume-snapshot-9fdf5b18604bd734.yaml │ ├── limit-rbac-kanister-operator-3c933af021b8d48a.yaml │ ├── multi-container-run-function-d488516c0f3b22c6.yaml │ ├── pre-release-0.110.0-a47623540224894a.yaml │ ├── pre-release-0.111.0-478149ddf5d56f80.yaml │ ├── pre-release-0.112.0-78fed87c3f58d801.yaml │ ├── pre-release-0.113.0-591b9333c935aae6.yaml │ ├── pre-release-0.115.0-5b3cbfef0ca0f77f.yaml │ ├── pre-release-0.116.0-c98ca63f11dae458.yaml │ ├── prepare_data_fail-2740d1b81db18a85.yaml │ ├── rds-credentials-1fa9817a21a2d80a.yaml │ ├── release-01e6c0f-restore-log-stream.yaml │ ├── release-0fde4f9-adding-liveness-readiness-probe-kanister-operator.yaml │ ├── release-1b7dce3-fix-copy-container-override-multicontainerrun.yaml │ ├── release-1c2fda5-adding-patch-operation-kubeops-function.yaml │ ├── release-618246c-adding-failure-reasons-actionset-cr.yaml │ ├── release-77ffaf0-updated-s3-profile-validation-documentation.yaml │ └── release-f398e80-adding-security-context-pod-container-kanister-operator.yaml ├── reno.yaml ├── scripts └── get.sh └── secure_defaults.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @kanisterio/maintainers 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/atlas-image-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/atlas-image-build.yaml -------------------------------------------------------------------------------- /.github/workflows/build_docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/build_docker.yaml -------------------------------------------------------------------------------- /.github/workflows/build_example_images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/build_example_images.yaml -------------------------------------------------------------------------------- /.github/workflows/dependendy-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/dependendy-review.yml -------------------------------------------------------------------------------- /.github/workflows/example-images-scanning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/example-images-scanning.yaml -------------------------------------------------------------------------------- /.github/workflows/govulncheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/govulncheck.yaml -------------------------------------------------------------------------------- /.github/workflows/images-vulnerability-scanning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/images-vulnerability-scanning.yaml -------------------------------------------------------------------------------- /.github/workflows/kanister-image-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/kanister-image-build.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/ossf-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/ossf-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/pre-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/pre-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish_docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/publish_docs.yaml -------------------------------------------------------------------------------- /.github/workflows/published-images-scanning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/published-images-scanning.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.github/workflows/triage-issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/triage-issues.yaml -------------------------------------------------------------------------------- /.github/workflows/triage-prs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.github/workflows/triage-prs.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/.mergify.yml -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/API.md -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/BUILD.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_CURRENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/CHANGELOG_CURRENT.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CODE_REVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/CODE_REVIEW.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/DCO -------------------------------------------------------------------------------- /Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/Dockerfile.in -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.kubebuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/Makefile.kubebuilder -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/RELEASE.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bundle.yaml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/bundle.yaml.in -------------------------------------------------------------------------------- /cmd/controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/cmd/controller/main.go -------------------------------------------------------------------------------- /cmd/kanctl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/cmd/kanctl/main.go -------------------------------------------------------------------------------- /cmd/kando/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/cmd/kando/main.go -------------------------------------------------------------------------------- /cmd/reposervercontroller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/cmd/reposervercontroller/main.go -------------------------------------------------------------------------------- /design/datamover_abstraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/datamover_abstraction.md -------------------------------------------------------------------------------- /design/images/datamover/client_secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/images/datamover/client_secrets.png -------------------------------------------------------------------------------- /design/images/datamover/client_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/images/datamover/client_token.png -------------------------------------------------------------------------------- /design/images/datamover/dataflow_kopia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/images/datamover/dataflow_kopia.png -------------------------------------------------------------------------------- /design/images/datamover/dataflow_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/images/datamover/dataflow_overview.png -------------------------------------------------------------------------------- /design/images/datamover/datamover_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/images/datamover/datamover_details.png -------------------------------------------------------------------------------- /design/images/datamover/datamover_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/images/datamover/datamover_layers.png -------------------------------------------------------------------------------- /design/images/datamover/datamover_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/images/datamover/datamover_profile.png -------------------------------------------------------------------------------- /design/images/datamover/kopia_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/images/datamover/kopia_integration.png -------------------------------------------------------------------------------- /design/images/kopia-CLI-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/images/kopia-CLI-workflow.png -------------------------------------------------------------------------------- /design/images/kopia-SDK-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/images/kopia-SDK-workflow.png -------------------------------------------------------------------------------- /design/images/prometheus-metrics-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/images/prometheus-metrics-design.png -------------------------------------------------------------------------------- /design/kanister-kopia-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/kanister-kopia-integration.md -------------------------------------------------------------------------------- /design/kanister-prometheus-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/kanister-prometheus-integration.md -------------------------------------------------------------------------------- /design/phase-level-progress-tracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/phase-level-progress-tracking.md -------------------------------------------------------------------------------- /design/progress-tracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/progress-tracking.md -------------------------------------------------------------------------------- /design/replace-CLI-with-SDK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/replace-CLI-with-SDK.md -------------------------------------------------------------------------------- /design/update-toc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/design/update-toc.sh -------------------------------------------------------------------------------- /docker/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/build/Dockerfile -------------------------------------------------------------------------------- /docker/build/requirements.txt: -------------------------------------------------------------------------------- 1 | reno==4.1.0 2 | nb2plots==0.7.2 3 | setuptools==80.9.0 4 | -------------------------------------------------------------------------------- /docker/cassandra/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/cassandra/Dockerfile -------------------------------------------------------------------------------- /docker/controller/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/controller/Dockerfile -------------------------------------------------------------------------------- /docker/couchbase-tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/couchbase-tools/Dockerfile -------------------------------------------------------------------------------- /docker/foundationdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/foundationdb/Dockerfile -------------------------------------------------------------------------------- /docker/kafka-adobes3Connector/image/adobe-monitorsink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kafka-adobes3Connector/image/adobe-monitorsink.sh -------------------------------------------------------------------------------- /docker/kafka-adobes3Connector/image/adobe-monitorsource.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kafka-adobes3Connector/image/adobe-monitorsource.sh -------------------------------------------------------------------------------- /docker/kafka-adobes3Connector/image/adobeSink.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kafka-adobes3Connector/image/adobeSink.Dockerfile -------------------------------------------------------------------------------- /docker/kafka-adobes3Connector/image/adobeSource.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kafka-adobes3Connector/image/adobeSource.Dockerfile -------------------------------------------------------------------------------- /docker/kafka-adobes3Connector/image/cleans3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kafka-adobes3Connector/image/cleans3.py -------------------------------------------------------------------------------- /docker/kanister-elasticsearch/image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kanister-elasticsearch/image/Dockerfile -------------------------------------------------------------------------------- /docker/kanister-kubectl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kanister-kubectl/Dockerfile -------------------------------------------------------------------------------- /docker/kanister-mongodb-replicaset/image/90forceyes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kanister-mongodb-replicaset/image/90forceyes -------------------------------------------------------------------------------- /docker/kanister-mongodb-replicaset/image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kanister-mongodb-replicaset/image/Dockerfile -------------------------------------------------------------------------------- /docker/kanister-mongodb-replicaset/image/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kanister-mongodb-replicaset/image/config -------------------------------------------------------------------------------- /docker/kanister-mongodb-replicaset/image/gbl_env.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export DEBIAN_FRONTEND=noninteractive 4 | -------------------------------------------------------------------------------- /docker/kanister-mongodb-replicaset/image/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kanister-mongodb-replicaset/image/install.sh -------------------------------------------------------------------------------- /docker/kanister-mysql/image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/kanister-mysql/image/Dockerfile -------------------------------------------------------------------------------- /docker/license_extractor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/license_extractor/Dockerfile -------------------------------------------------------------------------------- /docker/license_extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/license_extractor/README.md -------------------------------------------------------------------------------- /docker/license_extractor/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/license_extractor/build.sh -------------------------------------------------------------------------------- /docker/mongodb-atlas/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/mongodb-atlas/Dockerfile -------------------------------------------------------------------------------- /docker/mongodb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/mongodb/Dockerfile -------------------------------------------------------------------------------- /docker/mssql-tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/mssql-tools/Dockerfile -------------------------------------------------------------------------------- /docker/postgres-kanister-tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/postgres-kanister-tools/Dockerfile -------------------------------------------------------------------------------- /docker/postgres-kanister-tools/requirements.txt: -------------------------------------------------------------------------------- 1 | awscli==1.42.58 2 | pip==25.2 3 | setuptools==80.9.0 4 | wheel==0.45.1 5 | -------------------------------------------------------------------------------- /docker/postgresql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/postgresql/Dockerfile -------------------------------------------------------------------------------- /docker/postgresql/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/postgresql/requirements.txt -------------------------------------------------------------------------------- /docker/redis-tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/redis-tools/Dockerfile -------------------------------------------------------------------------------- /docker/repo-server-controller/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/repo-server-controller/Dockerfile -------------------------------------------------------------------------------- /docker/tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docker/tools/Dockerfile -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/.vitepress/theme/style.css -------------------------------------------------------------------------------- /docs/.vitepress/version.json: -------------------------------------------------------------------------------- 1 | {"version":"dev"} 2 | -------------------------------------------------------------------------------- /docs/api-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/api-examples.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/functions.md -------------------------------------------------------------------------------- /docs/generateSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/generateSidebar.js -------------------------------------------------------------------------------- /docs/generatedSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/generatedSidebar.js -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/markdown-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/markdown-examples.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/kanister-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/kanister-logo.png -------------------------------------------------------------------------------- /docs/public/kanister.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/kanister.svg -------------------------------------------------------------------------------- /docs/public/kanister_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/kanister_workflow.png -------------------------------------------------------------------------------- /docs/public/tasks/argo-cron-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/tasks/argo-cron-architecture.png -------------------------------------------------------------------------------- /docs/public/tasks/argo-cron-created-ui-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/tasks/argo-cron-created-ui-desc.png -------------------------------------------------------------------------------- /docs/public/tasks/argo-cron-created-ui-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/tasks/argo-cron-created-ui-list.png -------------------------------------------------------------------------------- /docs/public/tasks/argo-default-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/tasks/argo-default-ui.png -------------------------------------------------------------------------------- /docs/public/tasks/logs-grafana-data-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/tasks/logs-grafana-data-source.png -------------------------------------------------------------------------------- /docs/public/tasks/logs-grafana-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/tasks/logs-grafana-login.png -------------------------------------------------------------------------------- /docs/public/tasks/logs-grafana-loki-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/tasks/logs-grafana-loki-test.png -------------------------------------------------------------------------------- /docs/public/tasks/logs-kanister-all-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/tasks/logs-kanister-all-logs.png -------------------------------------------------------------------------------- /docs/public/tasks/logs-kanister-datapath-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/public/tasks/logs-kanister-datapath-logs.png -------------------------------------------------------------------------------- /docs/rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/rbac.md -------------------------------------------------------------------------------- /docs/tasks/argo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/tasks/argo.md -------------------------------------------------------------------------------- /docs/tasks/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/tasks/logs.md -------------------------------------------------------------------------------- /docs/tasks/logs_labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/tasks/logs_labels.md -------------------------------------------------------------------------------- /docs/tasks/logs_level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/tasks/logs_level.md -------------------------------------------------------------------------------- /docs/tasks/scaleworkload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/tasks/scaleworkload.md -------------------------------------------------------------------------------- /docs/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/templates.md -------------------------------------------------------------------------------- /docs/tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/tooling.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/aws-rds/aurora-mysql/rds-aurora-snap-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/aurora-mysql/rds-aurora-snap-blueprint.yaml -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/README.md -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/Dockerfile.in -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/LICENSE -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/Makefile -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/README.md -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/build/build.sh -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/build/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/build/test.sh -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/cmd/pgtest/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/cmd/pgtest/main.go -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/deploy/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/deploy/config.yaml -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/deploy/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/deploy/deployment.yaml -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/deploy/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/deploy/secret.yaml -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/deploy/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/deploy/service.yaml -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/go.mod -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/go.sum -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/pgtest/pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/pgtest/pkg/version/version.go -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/rds-postgres-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/rds-postgres-blueprint.yaml -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/rds-postgres-dump-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/rds-postgres-dump-blueprint.yaml -------------------------------------------------------------------------------- /examples/aws-rds/postgresql/rds-postgres-snap-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/aws-rds/postgresql/rds-postgres-snap-blueprint.yaml -------------------------------------------------------------------------------- /examples/cassandra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/cassandra/README.md -------------------------------------------------------------------------------- /examples/cassandra/cassandra-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/cassandra/cassandra-blueprint.yaml -------------------------------------------------------------------------------- /examples/cockroachdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/cockroachdb/README.md -------------------------------------------------------------------------------- /examples/cockroachdb/client-secure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/cockroachdb/client-secure.yaml -------------------------------------------------------------------------------- /examples/cockroachdb/cockroachdb-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/cockroachdb/cockroachdb-blueprint.yaml -------------------------------------------------------------------------------- /examples/couchbase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/couchbase/README.md -------------------------------------------------------------------------------- /examples/couchbase/blueprint-v2/couchbase-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/couchbase/blueprint-v2/couchbase-blueprint.yaml -------------------------------------------------------------------------------- /examples/couchbase/couchbase-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/couchbase/couchbase-blueprint.yaml -------------------------------------------------------------------------------- /examples/couchbase/kanister-clusteradmin-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/couchbase/kanister-clusteradmin-binding.yaml -------------------------------------------------------------------------------- /examples/csi-snapshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/csi-snapshot/README.md -------------------------------------------------------------------------------- /examples/csi-snapshot/csi-snapshot-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/csi-snapshot/csi-snapshot-blueprint.yaml -------------------------------------------------------------------------------- /examples/elasticsearch-incremental/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/elasticsearch-incremental/README.md -------------------------------------------------------------------------------- /examples/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/elasticsearch/README.md -------------------------------------------------------------------------------- /examples/elasticsearch/elasticsearch-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/elasticsearch/elasticsearch-blueprint.yaml -------------------------------------------------------------------------------- /examples/elasticsearch/extraInitContainers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/elasticsearch/extraInitContainers.yaml -------------------------------------------------------------------------------- /examples/etcd/etcd-in-cluster/k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/etcd/etcd-in-cluster/k8s/README.md -------------------------------------------------------------------------------- /examples/etcd/etcd-in-cluster/k8s/backup-actionset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/etcd/etcd-in-cluster/k8s/backup-actionset.yaml -------------------------------------------------------------------------------- /examples/etcd/etcd-in-cluster/ocp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/etcd/etcd-in-cluster/ocp/README.md -------------------------------------------------------------------------------- /examples/etcd/etcd-in-cluster/ocp/backup-actionset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/etcd/etcd-in-cluster/ocp/backup-actionset.yaml -------------------------------------------------------------------------------- /examples/etcd/etcd-in-cluster/ocp/cluster-ocp-restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/etcd/etcd-in-cluster/ocp/cluster-ocp-restore.sh -------------------------------------------------------------------------------- /examples/foundationdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/foundationdb/README.md -------------------------------------------------------------------------------- /examples/foundationdb/foundationdb-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/foundationdb/foundationdb-blueprint.yaml -------------------------------------------------------------------------------- /examples/foundationdb/kanister-clusteradmin-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/foundationdb/kanister-clusteradmin-binding.yaml -------------------------------------------------------------------------------- /examples/foundationdb/local_cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/foundationdb/local_cluster.yaml -------------------------------------------------------------------------------- /examples/k8ssandra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/k8ssandra/README.md -------------------------------------------------------------------------------- /examples/k8ssandra/k8ssandra-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/k8ssandra/k8ssandra-blueprint.yaml -------------------------------------------------------------------------------- /examples/k8ssandra/kanister-k8ssandra-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/k8ssandra/kanister-k8ssandra-rbac.yaml -------------------------------------------------------------------------------- /examples/kafka/adobe-s3-connector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/kafka/adobe-s3-connector/README.md -------------------------------------------------------------------------------- /examples/kafka/adobe-s3-connector/adobe-s3-sink.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/kafka/adobe-s3-connector/adobe-s3-sink.properties -------------------------------------------------------------------------------- /examples/kafka/adobe-s3-connector/adobe-s3-source.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/kafka/adobe-s3-connector/adobe-s3-source.properties -------------------------------------------------------------------------------- /examples/kafka/adobe-s3-connector/kafdrop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/kafka/adobe-s3-connector/kafdrop.yaml -------------------------------------------------------------------------------- /examples/kafka/adobe-s3-connector/kafka-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/kafka/adobe-s3-connector/kafka-blueprint.yaml -------------------------------------------------------------------------------- /examples/kafka/adobe-s3-connector/kafka-bridge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/kafka/adobe-s3-connector/kafka-bridge.yaml -------------------------------------------------------------------------------- /examples/kafka/adobe-s3-connector/kafka-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/kafka/adobe-s3-connector/kafka-cluster.yaml -------------------------------------------------------------------------------- /examples/maria/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/maria/README.md -------------------------------------------------------------------------------- /examples/maria/blueprint-v2/maria-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/maria/blueprint-v2/maria-blueprint.yaml -------------------------------------------------------------------------------- /examples/maria/maria-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/maria/maria-blueprint.yaml -------------------------------------------------------------------------------- /examples/mongo-sidecar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongo-sidecar/README.md -------------------------------------------------------------------------------- /examples/mongo-sidecar/backup-actionset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongo-sidecar/backup-actionset.yaml -------------------------------------------------------------------------------- /examples/mongo-sidecar/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongo-sidecar/blueprint.yaml -------------------------------------------------------------------------------- /examples/mongo-sidecar/mongo-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongo-sidecar/mongo-cluster.yaml -------------------------------------------------------------------------------- /examples/mongo-sidecar/restore-actionset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongo-sidecar/restore-actionset.yaml -------------------------------------------------------------------------------- /examples/mongo-sidecar/s3-location-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongo-sidecar/s3-location-configmap.yaml -------------------------------------------------------------------------------- /examples/mongo-sidecar/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongo-sidecar/secrets.yaml -------------------------------------------------------------------------------- /examples/mongodb-atlas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongodb-atlas/README.md -------------------------------------------------------------------------------- /examples/mongodb-atlas/mongodb-atlas-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongodb-atlas/mongodb-atlas-blueprint.yaml -------------------------------------------------------------------------------- /examples/mongodb-deploymentconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongodb-deploymentconfig/README.md -------------------------------------------------------------------------------- /examples/mongodb-restic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongodb-restic/README.md -------------------------------------------------------------------------------- /examples/mongodb-restic/mongodb-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongodb-restic/mongodb-blueprint.yaml -------------------------------------------------------------------------------- /examples/mongodb/7.8.10/mongo-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongodb/7.8.10/mongo-blueprint.yaml -------------------------------------------------------------------------------- /examples/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongodb/README.md -------------------------------------------------------------------------------- /examples/mongodb/blueprint-v2/mongo-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongodb/blueprint-v2/mongo-blueprint.yaml -------------------------------------------------------------------------------- /examples/mongodb/mongo-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mongodb/mongo-blueprint.yaml -------------------------------------------------------------------------------- /examples/mssql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mssql/README.md -------------------------------------------------------------------------------- /examples/mssql/blueprint-v2/mssql-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mssql/blueprint-v2/mssql-blueprint.yaml -------------------------------------------------------------------------------- /examples/mssql/mssql-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mssql/mssql-blueprint.yaml -------------------------------------------------------------------------------- /examples/mysql-deploymentconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mysql-deploymentconfig/README.md -------------------------------------------------------------------------------- /examples/mysql/6.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mysql/6.x/README.md -------------------------------------------------------------------------------- /examples/mysql/6.x/mysql-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mysql/6.x/mysql-blueprint.yaml -------------------------------------------------------------------------------- /examples/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mysql/README.md -------------------------------------------------------------------------------- /examples/mysql/blueprint-v2/mysql-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mysql/blueprint-v2/mysql-blueprint.yaml -------------------------------------------------------------------------------- /examples/mysql/mysql-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/mysql/mysql-blueprint.yaml -------------------------------------------------------------------------------- /examples/postgres-RDS/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-RDS/Dockerfile -------------------------------------------------------------------------------- /examples/postgres-RDS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-RDS/README.md -------------------------------------------------------------------------------- /examples/postgres-RDS/rds-restore-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-RDS/rds-restore-blueprint.yaml -------------------------------------------------------------------------------- /examples/postgres-basic-pgdump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-basic-pgdump/README.md -------------------------------------------------------------------------------- /examples/postgres-basic-pgdump/backup-actionset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-basic-pgdump/backup-actionset.yaml -------------------------------------------------------------------------------- /examples/postgres-basic-pgdump/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-basic-pgdump/blueprint.yaml -------------------------------------------------------------------------------- /examples/postgres-basic-pgdump/image/90forceyes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-basic-pgdump/image/90forceyes -------------------------------------------------------------------------------- /examples/postgres-basic-pgdump/image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-basic-pgdump/image/Dockerfile -------------------------------------------------------------------------------- /examples/postgres-basic-pgdump/image/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-basic-pgdump/image/config -------------------------------------------------------------------------------- /examples/postgres-basic-pgdump/image/gbl_env.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export DEBIAN_FRONTEND=noninteractive -------------------------------------------------------------------------------- /examples/postgres-basic-pgdump/image/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-basic-pgdump/image/install.sh -------------------------------------------------------------------------------- /examples/postgres-basic-pgdump/restore-actionset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-basic-pgdump/restore-actionset.yaml -------------------------------------------------------------------------------- /examples/postgres-basic-pgdump/s3-location-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-basic-pgdump/s3-location-configmap.yaml -------------------------------------------------------------------------------- /examples/postgres-basic-pgdump/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgres-basic-pgdump/secrets.yaml -------------------------------------------------------------------------------- /examples/postgresql-deploymentconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgresql-deploymentconfig/README.md -------------------------------------------------------------------------------- /examples/postgresql-ha/hook-blueprint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgresql-ha/hook-blueprint/README.md -------------------------------------------------------------------------------- /examples/postgresql-ha/hook-blueprint/postgres-ha-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgresql-ha/hook-blueprint/postgres-ha-hook.yaml -------------------------------------------------------------------------------- /examples/postgresql-wale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgresql-wale/README.md -------------------------------------------------------------------------------- /examples/postgresql-wale/postgresql-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgresql-wale/postgresql-blueprint.yaml -------------------------------------------------------------------------------- /examples/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgresql/README.md -------------------------------------------------------------------------------- /examples/postgresql/blueprint-v2/postgres-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgresql/blueprint-v2/postgres-blueprint.yaml -------------------------------------------------------------------------------- /examples/postgresql/postgres-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgresql/postgres-blueprint.yaml -------------------------------------------------------------------------------- /examples/postgresql/postgres-start-stop-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgresql/postgres-start-stop-blueprint.yaml -------------------------------------------------------------------------------- /examples/postgresql/v10.16.2/postgres-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgresql/v10.16.2/postgres-blueprint.yaml -------------------------------------------------------------------------------- /examples/postgresql/v8.6.4/postgres-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/postgresql/v8.6.4/postgres-blueprint.yaml -------------------------------------------------------------------------------- /examples/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/redis/README.md -------------------------------------------------------------------------------- /examples/redis/redis-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/redis/redis-blueprint.yaml -------------------------------------------------------------------------------- /examples/time-log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/time-log/README.md -------------------------------------------------------------------------------- /examples/time-log/backup-actionset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/time-log/backup-actionset.yaml -------------------------------------------------------------------------------- /examples/time-log/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/time-log/blueprint.yaml -------------------------------------------------------------------------------- /examples/time-log/s3-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/time-log/s3-profile.yaml -------------------------------------------------------------------------------- /examples/time-log/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/time-log/secrets.yaml -------------------------------------------------------------------------------- /examples/time-log/time-logger-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/examples/time-log/time-logger-deployment.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/go.sum -------------------------------------------------------------------------------- /graphic/graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/graphic/graphic.png -------------------------------------------------------------------------------- /graphic/kanister_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/graphic/kanister_workflow.png -------------------------------------------------------------------------------- /helm/fdb-instance/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-instance/.helmignore -------------------------------------------------------------------------------- /helm/fdb-instance/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-instance/Chart.yaml -------------------------------------------------------------------------------- /helm/fdb-instance/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-instance/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/fdb-instance/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-instance/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/fdb-instance/templates/local_cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-instance/templates/local_cluster.yaml -------------------------------------------------------------------------------- /helm/fdb-instance/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helm/fdb-instance/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-instance/values.yaml -------------------------------------------------------------------------------- /helm/fdb-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-operator/Chart.yaml -------------------------------------------------------------------------------- /helm/fdb-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | FoundationDB operator has been installed. 2 | -------------------------------------------------------------------------------- /helm/fdb-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/fdb-operator/templates/crds/foundationdbcluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-operator/templates/crds/foundationdbcluster.yaml -------------------------------------------------------------------------------- /helm/fdb-operator/templates/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-operator/templates/manager/manager.yaml -------------------------------------------------------------------------------- /helm/fdb-operator/templates/manager/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-operator/templates/manager/secret.yaml -------------------------------------------------------------------------------- /helm/fdb-operator/templates/manager/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-operator/templates/manager/service.yaml -------------------------------------------------------------------------------- /helm/fdb-operator/templates/manager/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-operator/templates/manager/statefulset.yaml -------------------------------------------------------------------------------- /helm/fdb-operator/templates/rbac/rbac_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-operator/templates/rbac/rbac_role.yaml -------------------------------------------------------------------------------- /helm/fdb-operator/templates/rbac/rbac_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-operator/templates/rbac/rbac_role_binding.yaml -------------------------------------------------------------------------------- /helm/fdb-operator/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-operator/templates/secrets.yaml -------------------------------------------------------------------------------- /helm/fdb-operator/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helm/fdb-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/fdb-operator/values.yaml -------------------------------------------------------------------------------- /helm/kanister-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/kanister-operator/.helmignore -------------------------------------------------------------------------------- /helm/kanister-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/kanister-operator/Chart.yaml -------------------------------------------------------------------------------- /helm/kanister-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/kanister-operator/README.md -------------------------------------------------------------------------------- /helm/kanister-operator/crds/actionset.yaml: -------------------------------------------------------------------------------- 1 | ../../../pkg/customresource/actionset.yaml -------------------------------------------------------------------------------- /helm/kanister-operator/crds/blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../pkg/customresource/blueprint.yaml -------------------------------------------------------------------------------- /helm/kanister-operator/crds/profile.yaml: -------------------------------------------------------------------------------- 1 | ../../../pkg/customresource/profile.yaml -------------------------------------------------------------------------------- /helm/kanister-operator/crds/repositoryserver.yaml: -------------------------------------------------------------------------------- 1 | ../../../pkg/customresource/repositoryserver.yaml -------------------------------------------------------------------------------- /helm/kanister-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/kanister-operator/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/kanister-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/kanister-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/kanister-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/kanister-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/kanister-operator/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/kanister-operator/templates/rbac.yaml -------------------------------------------------------------------------------- /helm/kanister-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/kanister-operator/templates/service.yaml -------------------------------------------------------------------------------- /helm/kanister-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/kanister-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/kanister-operator/templates/validating-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/kanister-operator/templates/validating-webhook.yaml -------------------------------------------------------------------------------- /helm/kanister-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/kanister-operator/values.yaml -------------------------------------------------------------------------------- /helm/profile/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/profile/.helmignore -------------------------------------------------------------------------------- /helm/profile/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/profile/Chart.yaml -------------------------------------------------------------------------------- /helm/profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/profile/README.md -------------------------------------------------------------------------------- /helm/profile/ci/list-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/profile/ci/list-values.yaml -------------------------------------------------------------------------------- /helm/profile/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/profile/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/profile/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/profile/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/profile/templates/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/profile/templates/profile.yaml -------------------------------------------------------------------------------- /helm/profile/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/helm/profile/values.yaml -------------------------------------------------------------------------------- /pkg/apis/cr/v1alpha1/deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/apis/cr/v1alpha1/deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/cr/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/apis/cr/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/cr/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/apis/cr/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/cr/v1alpha1/repositoryserver_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/apis/cr/v1alpha1/repositoryserver_types.go -------------------------------------------------------------------------------- /pkg/apis/cr/v1alpha1/repositoryserver_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/apis/cr/v1alpha1/repositoryserver_types_test.go -------------------------------------------------------------------------------- /pkg/apis/cr/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/apis/cr/v1alpha1/types.go -------------------------------------------------------------------------------- /pkg/apis/cr/v1alpha1/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/apis/cr/v1alpha1/types_test.go -------------------------------------------------------------------------------- /pkg/apis/cr/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/apis/cr/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/app.go -------------------------------------------------------------------------------- /pkg/app/bp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/bp.go -------------------------------------------------------------------------------- /pkg/app/bp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/bp_test.go -------------------------------------------------------------------------------- /pkg/app/cassandra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/cassandra.go -------------------------------------------------------------------------------- /pkg/app/cockroachdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/cockroachdb.go -------------------------------------------------------------------------------- /pkg/app/couchbase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/couchbase.go -------------------------------------------------------------------------------- /pkg/app/csi-snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/csi-snapshot.go -------------------------------------------------------------------------------- /pkg/app/elasticsearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/elasticsearch.go -------------------------------------------------------------------------------- /pkg/app/foundationdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/foundationdb.go -------------------------------------------------------------------------------- /pkg/app/helm_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/helm_app.go -------------------------------------------------------------------------------- /pkg/app/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/kafka.go -------------------------------------------------------------------------------- /pkg/app/mariadb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/mariadb.go -------------------------------------------------------------------------------- /pkg/app/mongodb-deploymentconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/mongodb-deploymentconfig.go -------------------------------------------------------------------------------- /pkg/app/mongodb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/mongodb.go -------------------------------------------------------------------------------- /pkg/app/mssql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/mssql.go -------------------------------------------------------------------------------- /pkg/app/mysql-deploymentconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/mysql-deploymentconfig.go -------------------------------------------------------------------------------- /pkg/app/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/mysql.go -------------------------------------------------------------------------------- /pkg/app/postgresql-deploymentconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/postgresql-deploymentconfig.go -------------------------------------------------------------------------------- /pkg/app/postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/postgresql.go -------------------------------------------------------------------------------- /pkg/app/rds_aurora_mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/rds_aurora_mysql.go -------------------------------------------------------------------------------- /pkg/app/rds_postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/rds_postgres.go -------------------------------------------------------------------------------- /pkg/app/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/app/utils.go -------------------------------------------------------------------------------- /pkg/aws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/aws/aws.go -------------------------------------------------------------------------------- /pkg/aws/aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/aws/aws_test.go -------------------------------------------------------------------------------- /pkg/aws/ec2/ec2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/aws/ec2/ec2.go -------------------------------------------------------------------------------- /pkg/aws/rds/rds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/aws/rds/rds.go -------------------------------------------------------------------------------- /pkg/aws/role/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/aws/role/role.go -------------------------------------------------------------------------------- /pkg/blueprint/blueprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/blueprint/blueprint.go -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/cassandra-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/cassandra/cassandra-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/cockroachdb-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/cockroachdb/cockroachdb-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/couchbase-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/couchbase/couchbase-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/csi-snapshot-blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/blueprint/blueprints/csi-snapshot-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/elasticsearch-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/elasticsearch/elasticsearch-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/foundationdb-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/foundationdb/foundationdb-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/kafka-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/kafka/adobe-s3-connector/kafka-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/maria-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/maria/maria-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/mongo-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/mongodb/mongo-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/mongo-dep-config-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/mongodb-deploymentconfig/mongo-dep-config-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/mssql-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/mssql/mssql-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/mysql-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/mysql/mysql-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/mysql-dep-config-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/mysql-deploymentconfig/mysql-dep-config-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/pitr-postgres-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/postgresql-wale/postgresql-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/postgres-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/postgresql/postgres-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/postgres-dep-config-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/postgresql-deploymentconfig/postgres-dep-config-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/rds-aurora-snap-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/aws-rds/aurora-mysql/rds-aurora-snap-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/rds-postgres-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/aws-rds/postgresql/rds-postgres-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/rds-postgres-dump-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/aws-rds/postgresql/rds-postgres-dump-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/blueprints/rds-postgres-snap-blueprint.yaml: -------------------------------------------------------------------------------- 1 | ../../../examples/aws-rds/postgresql/rds-postgres-snap-blueprint.yaml -------------------------------------------------------------------------------- /pkg/blueprint/validate/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/blueprint/validate/validate.go -------------------------------------------------------------------------------- /pkg/blueprint/validate/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/blueprint/validate/validate_test.go -------------------------------------------------------------------------------- /pkg/caller/caller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/caller/caller_test.go -------------------------------------------------------------------------------- /pkg/caller/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/caller/frame.go -------------------------------------------------------------------------------- /pkg/chronicle/chronicle_pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/chronicle/chronicle_pull.go -------------------------------------------------------------------------------- /pkg/chronicle/chronicle_push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/chronicle/chronicle_push.go -------------------------------------------------------------------------------- /pkg/chronicle/chronicle_push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/chronicle/chronicle_push_test.go -------------------------------------------------------------------------------- /pkg/chronicle/chronicle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/chronicle/chronicle_test.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/actionprogress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/actionprogress.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/actionset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/actionset.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/actionsetspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/actionsetspec.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/actionsetstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/actionsetstatus.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/actionspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/actionspec.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/actionstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/actionstatus.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/artifact.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/blueprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/blueprint.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/blueprintaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/blueprintaction.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/blueprintphase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/blueprintphase.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/configuration.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/credential.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/error.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/keypair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/keypair.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/location.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/objectreference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/objectreference.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/phase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/phase.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/phaseprogress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/phaseprogress.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/profile.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/repository.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/repositoryserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/repositoryserver.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/server.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/serverinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/serverinfo.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/storage.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/cr/v1alpha1/useraccess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/cr/v1alpha1/useraccess.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/internal/internal.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/applyconfiguration/utils.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/clientset/versioned/clientset.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/clientset_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/clientset/versioned/fake/clientset_generated.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/clientset/versioned/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/clientset/versioned/fake/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/clientset/versioned/scheme/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/clientset/versioned/scheme/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/cr/v1alpha1/actionset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/clientset/versioned/typed/cr/v1alpha1/actionset.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/cr/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/clientset/versioned/typed/cr/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/cr/v1alpha1/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/clientset/versioned/typed/cr/v1alpha1/profile.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/cr/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/informers/externalversions/cr/interface.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/informers/externalversions/factory.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/informers/externalversions/generic.go -------------------------------------------------------------------------------- /pkg/client/listers/cr/v1alpha1/actionset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/listers/cr/v1alpha1/actionset.go -------------------------------------------------------------------------------- /pkg/client/listers/cr/v1alpha1/blueprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/listers/cr/v1alpha1/blueprint.go -------------------------------------------------------------------------------- /pkg/client/listers/cr/v1alpha1/expansion_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/listers/cr/v1alpha1/expansion_generated.go -------------------------------------------------------------------------------- /pkg/client/listers/cr/v1alpha1/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/listers/cr/v1alpha1/profile.go -------------------------------------------------------------------------------- /pkg/client/listers/cr/v1alpha1/repositoryserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/client/listers/cr/v1alpha1/repositoryserver.go -------------------------------------------------------------------------------- /pkg/config/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/config/helpers.go -------------------------------------------------------------------------------- /pkg/consts/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/consts/consts.go -------------------------------------------------------------------------------- /pkg/consts/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/consts/utils.go -------------------------------------------------------------------------------- /pkg/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/controller/controller.go -------------------------------------------------------------------------------- /pkg/controller/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/controller/controller_test.go -------------------------------------------------------------------------------- /pkg/controller/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/controller/metrics.go -------------------------------------------------------------------------------- /pkg/controllers/repositoryserver/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/controllers/repositoryserver/handler.go -------------------------------------------------------------------------------- /pkg/controllers/repositoryserver/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/controllers/repositoryserver/repository.go -------------------------------------------------------------------------------- /pkg/controllers/repositoryserver/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/controllers/repositoryserver/repository_test.go -------------------------------------------------------------------------------- /pkg/controllers/repositoryserver/secrets_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/controllers/repositoryserver/secrets_manager.go -------------------------------------------------------------------------------- /pkg/controllers/repositoryserver/secrets_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/controllers/repositoryserver/secrets_manager_test.go -------------------------------------------------------------------------------- /pkg/controllers/repositoryserver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/controllers/repositoryserver/server.go -------------------------------------------------------------------------------- /pkg/controllers/repositoryserver/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/controllers/repositoryserver/utils.go -------------------------------------------------------------------------------- /pkg/customresource/actionset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/customresource/actionset.yaml -------------------------------------------------------------------------------- /pkg/customresource/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/customresource/blueprint.yaml -------------------------------------------------------------------------------- /pkg/customresource/customresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/customresource/customresource.go -------------------------------------------------------------------------------- /pkg/customresource/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/customresource/embed.go -------------------------------------------------------------------------------- /pkg/customresource/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/customresource/profile.yaml -------------------------------------------------------------------------------- /pkg/customresource/repositoryserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/customresource/repositoryserver.yaml -------------------------------------------------------------------------------- /pkg/customresource/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/customresource/watcher.go -------------------------------------------------------------------------------- /pkg/datamover/datamover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/datamover/datamover.go -------------------------------------------------------------------------------- /pkg/datamover/datamover_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/datamover/datamover_test.go -------------------------------------------------------------------------------- /pkg/datamover/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/datamover/profile.go -------------------------------------------------------------------------------- /pkg/datamover/profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/datamover/profile_test.go -------------------------------------------------------------------------------- /pkg/datamover/repository_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/datamover/repository_server.go -------------------------------------------------------------------------------- /pkg/datamover/repository_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/datamover/repository_server_test.go -------------------------------------------------------------------------------- /pkg/datamover/testutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/datamover/testutils.go -------------------------------------------------------------------------------- /pkg/datamover/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/datamover/utils.go -------------------------------------------------------------------------------- /pkg/discovery/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/discovery/crd.go -------------------------------------------------------------------------------- /pkg/discovery/crd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/discovery/crd_test.go -------------------------------------------------------------------------------- /pkg/discovery/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/discovery/discovery.go -------------------------------------------------------------------------------- /pkg/discovery/discovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/discovery/discovery_test.go -------------------------------------------------------------------------------- /pkg/envdir/envdir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/envdir/envdir.go -------------------------------------------------------------------------------- /pkg/envdir/envdir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/envdir/envdir_test.go -------------------------------------------------------------------------------- /pkg/ephemeral/envvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/ephemeral/envvar.go -------------------------------------------------------------------------------- /pkg/ephemeral/envvar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/ephemeral/envvar_test.go -------------------------------------------------------------------------------- /pkg/ephemeral/ephemeral.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/ephemeral/ephemeral.go -------------------------------------------------------------------------------- /pkg/ephemeral/ephemeral_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/ephemeral/ephemeral_test.go -------------------------------------------------------------------------------- /pkg/errorchecker/errorchecker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/errorchecker/errorchecker.go -------------------------------------------------------------------------------- /pkg/errorchecker/errorchecker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/errorchecker/errorchecker_test.go -------------------------------------------------------------------------------- /pkg/eventer/event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/eventer/event_recorder.go -------------------------------------------------------------------------------- /pkg/field/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/field/context.go -------------------------------------------------------------------------------- /pkg/field/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/field/field.go -------------------------------------------------------------------------------- /pkg/field/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/field/field_test.go -------------------------------------------------------------------------------- /pkg/field/linked_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/field/linked_field.go -------------------------------------------------------------------------------- /pkg/filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/filter/filter.go -------------------------------------------------------------------------------- /pkg/filter/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/filter/filter_test.go -------------------------------------------------------------------------------- /pkg/filter/unstructured.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/filter/unstructured.go -------------------------------------------------------------------------------- /pkg/filter/unstructured_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/filter/unstructured_test.go -------------------------------------------------------------------------------- /pkg/format/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/format/format.go -------------------------------------------------------------------------------- /pkg/format/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/format/format_test.go -------------------------------------------------------------------------------- /pkg/format/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/format/writer.go -------------------------------------------------------------------------------- /pkg/function/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/args.go -------------------------------------------------------------------------------- /pkg/function/args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/args_test.go -------------------------------------------------------------------------------- /pkg/function/backup_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/backup_data.go -------------------------------------------------------------------------------- /pkg/function/backup_data_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/backup_data_all.go -------------------------------------------------------------------------------- /pkg/function/backup_data_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/backup_data_stats.go -------------------------------------------------------------------------------- /pkg/function/backup_data_using_kopia_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/backup_data_using_kopia_server.go -------------------------------------------------------------------------------- /pkg/function/checkRepository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/checkRepository.go -------------------------------------------------------------------------------- /pkg/function/copy_volume_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/copy_volume_data.go -------------------------------------------------------------------------------- /pkg/function/create_csi_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/create_csi_snapshot.go -------------------------------------------------------------------------------- /pkg/function/create_csi_snapshot_static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/create_csi_snapshot_static.go -------------------------------------------------------------------------------- /pkg/function/create_csi_snapshot_static_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/create_csi_snapshot_static_test.go -------------------------------------------------------------------------------- /pkg/function/create_csi_snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/create_csi_snapshot_test.go -------------------------------------------------------------------------------- /pkg/function/create_rds_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/create_rds_snapshot.go -------------------------------------------------------------------------------- /pkg/function/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/data_test.go -------------------------------------------------------------------------------- /pkg/function/delete_csi_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/delete_csi_snapshot.go -------------------------------------------------------------------------------- /pkg/function/delete_csi_snapshot_content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/delete_csi_snapshot_content.go -------------------------------------------------------------------------------- /pkg/function/delete_csi_snapshot_content_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/delete_csi_snapshot_content_test.go -------------------------------------------------------------------------------- /pkg/function/delete_csi_snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/delete_csi_snapshot_test.go -------------------------------------------------------------------------------- /pkg/function/delete_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/delete_data.go -------------------------------------------------------------------------------- /pkg/function/delete_data_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/delete_data_all.go -------------------------------------------------------------------------------- /pkg/function/delete_data_using_kopia_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/delete_data_using_kopia_server.go -------------------------------------------------------------------------------- /pkg/function/delete_rds_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/delete_rds_snapshot.go -------------------------------------------------------------------------------- /pkg/function/export_rds_snapshot_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/export_rds_snapshot_location.go -------------------------------------------------------------------------------- /pkg/function/function_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/function_test.go -------------------------------------------------------------------------------- /pkg/function/kube_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/kube_exec.go -------------------------------------------------------------------------------- /pkg/function/kube_exec_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/kube_exec_all.go -------------------------------------------------------------------------------- /pkg/function/kube_exec_all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/kube_exec_all_test.go -------------------------------------------------------------------------------- /pkg/function/kube_exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/kube_exec_test.go -------------------------------------------------------------------------------- /pkg/function/kube_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/kube_task.go -------------------------------------------------------------------------------- /pkg/function/kube_task_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/kube_task_test.go -------------------------------------------------------------------------------- /pkg/function/kubeops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/kubeops.go -------------------------------------------------------------------------------- /pkg/function/kubeops_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/kubeops_test.go -------------------------------------------------------------------------------- /pkg/function/location_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/location_delete.go -------------------------------------------------------------------------------- /pkg/function/multi_container_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/multi_container_run.go -------------------------------------------------------------------------------- /pkg/function/multi_container_run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/multi_container_run_test.go -------------------------------------------------------------------------------- /pkg/function/prepare_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/prepare_data.go -------------------------------------------------------------------------------- /pkg/function/prepare_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/prepare_data_test.go -------------------------------------------------------------------------------- /pkg/function/rds_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/rds_functions_test.go -------------------------------------------------------------------------------- /pkg/function/rds_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/rds_utils.go -------------------------------------------------------------------------------- /pkg/function/restore_csi_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/restore_csi_snapshot.go -------------------------------------------------------------------------------- /pkg/function/restore_csi_snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/restore_csi_snapshot_test.go -------------------------------------------------------------------------------- /pkg/function/restore_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/restore_data.go -------------------------------------------------------------------------------- /pkg/function/restore_data_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/restore_data_all.go -------------------------------------------------------------------------------- /pkg/function/restore_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/restore_data_test.go -------------------------------------------------------------------------------- /pkg/function/restore_data_using_kopia_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/restore_data_using_kopia_server.go -------------------------------------------------------------------------------- /pkg/function/restore_rds_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/restore_rds_snapshot.go -------------------------------------------------------------------------------- /pkg/function/scale_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/scale_test.go -------------------------------------------------------------------------------- /pkg/function/scale_workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/scale_workload.go -------------------------------------------------------------------------------- /pkg/function/scale_workload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/scale_workload_test.go -------------------------------------------------------------------------------- /pkg/function/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/utils.go -------------------------------------------------------------------------------- /pkg/function/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/utils_test.go -------------------------------------------------------------------------------- /pkg/function/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/wait.go -------------------------------------------------------------------------------- /pkg/function/wait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/wait_test.go -------------------------------------------------------------------------------- /pkg/function/waitv2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/waitv2.go -------------------------------------------------------------------------------- /pkg/function/waitv2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/function/waitv2_test.go -------------------------------------------------------------------------------- /pkg/handler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/handler/handler.go -------------------------------------------------------------------------------- /pkg/handler/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/handler/healthcheck.go -------------------------------------------------------------------------------- /pkg/helm/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/helm/client.go -------------------------------------------------------------------------------- /pkg/helm/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/helm/client_test.go -------------------------------------------------------------------------------- /pkg/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/helm/helm.go -------------------------------------------------------------------------------- /pkg/helm/helm_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/helm/helm_helpers.go -------------------------------------------------------------------------------- /pkg/jsonpath/jsonpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/jsonpath/jsonpath.go -------------------------------------------------------------------------------- /pkg/jsonpath/jsonpath_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/jsonpath/jsonpath_test.go -------------------------------------------------------------------------------- /pkg/kancontroller/kancontroller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kancontroller/kancontroller.go -------------------------------------------------------------------------------- /pkg/kanctl/actionset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/actionset.go -------------------------------------------------------------------------------- /pkg/kanctl/actionset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/actionset_test.go -------------------------------------------------------------------------------- /pkg/kanctl/blueprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/blueprint.go -------------------------------------------------------------------------------- /pkg/kanctl/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/create.go -------------------------------------------------------------------------------- /pkg/kanctl/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/error.go -------------------------------------------------------------------------------- /pkg/kanctl/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/error_test.go -------------------------------------------------------------------------------- /pkg/kanctl/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/helper.go -------------------------------------------------------------------------------- /pkg/kanctl/kanctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/kanctl.go -------------------------------------------------------------------------------- /pkg/kanctl/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/profile.go -------------------------------------------------------------------------------- /pkg/kanctl/profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/profile_test.go -------------------------------------------------------------------------------- /pkg/kanctl/repositoryserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/repositoryserver.go -------------------------------------------------------------------------------- /pkg/kanctl/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/secrets.go -------------------------------------------------------------------------------- /pkg/kanctl/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanctl/validate.go -------------------------------------------------------------------------------- /pkg/kando/chronicle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/chronicle.go -------------------------------------------------------------------------------- /pkg/kando/chronicle_pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/chronicle_pull.go -------------------------------------------------------------------------------- /pkg/kando/chronicle_push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/chronicle_push.go -------------------------------------------------------------------------------- /pkg/kando/kando.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/kando.go -------------------------------------------------------------------------------- /pkg/kando/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/location.go -------------------------------------------------------------------------------- /pkg/kando/location_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/location_delete.go -------------------------------------------------------------------------------- /pkg/kando/location_pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/location_pull.go -------------------------------------------------------------------------------- /pkg/kando/location_push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/location_push.go -------------------------------------------------------------------------------- /pkg/kando/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/output.go -------------------------------------------------------------------------------- /pkg/kando/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/process.go -------------------------------------------------------------------------------- /pkg/kando/process_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/process_client.go -------------------------------------------------------------------------------- /pkg/kando/process_client_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/process_client_create.go -------------------------------------------------------------------------------- /pkg/kando/process_client_execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/process_client_execute.go -------------------------------------------------------------------------------- /pkg/kando/process_client_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/process_client_get.go -------------------------------------------------------------------------------- /pkg/kando/process_client_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/process_client_list.go -------------------------------------------------------------------------------- /pkg/kando/process_client_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/process_client_output.go -------------------------------------------------------------------------------- /pkg/kando/process_client_signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/process_client_signal.go -------------------------------------------------------------------------------- /pkg/kando/process_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/process_client_test.go -------------------------------------------------------------------------------- /pkg/kando/process_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/process_server.go -------------------------------------------------------------------------------- /pkg/kando/process_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/process_server_test.go -------------------------------------------------------------------------------- /pkg/kando/processtest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/processtest.go -------------------------------------------------------------------------------- /pkg/kando/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/stream.go -------------------------------------------------------------------------------- /pkg/kando/stream_push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kando/stream_push.go -------------------------------------------------------------------------------- /pkg/kanister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanister.go -------------------------------------------------------------------------------- /pkg/kanister_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanister_test.go -------------------------------------------------------------------------------- /pkg/kanx/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanx/client.go -------------------------------------------------------------------------------- /pkg/kanx/kanx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanx/kanx.pb.go -------------------------------------------------------------------------------- /pkg/kanx/kanx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanx/kanx.proto -------------------------------------------------------------------------------- /pkg/kanx/kanx_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanx/kanx_grpc.pb.go -------------------------------------------------------------------------------- /pkg/kanx/kanx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanx/kanx_test.go -------------------------------------------------------------------------------- /pkg/kanx/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanx/logger.go -------------------------------------------------------------------------------- /pkg/kanx/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanx/logger_test.go -------------------------------------------------------------------------------- /pkg/kanx/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kanx/server.go -------------------------------------------------------------------------------- /pkg/kopia/cli/args/cache_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/args/cache_args.go -------------------------------------------------------------------------------- /pkg/kopia/cli/args/common_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/args/common_args.go -------------------------------------------------------------------------------- /pkg/kopia/cli/args/ephemeral_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/args/ephemeral_args.go -------------------------------------------------------------------------------- /pkg/kopia/cli/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/doc.go -------------------------------------------------------------------------------- /pkg/kopia/cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/errors.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/args/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/args/args.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/args/args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/args/args_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/kopia.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/kopia.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/kopia_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/kopia_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/location.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/location_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/location_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/log/log.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/opts/cache_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/opts/cache_opts.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/opts/cache_opts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/opts/cache_opts_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/opts/common_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/opts/common_opts.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/opts/common_opts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/opts/common_opts_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/opts/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/opts/opts.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/opts/opts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/opts/opts_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/path.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/path_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/test/arg_suit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/test/arg_suit.go -------------------------------------------------------------------------------- /pkg/kopia/cli/internal/test/command_suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/internal/test/command_suite.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/data_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/opts.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/opts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/opts_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/repository_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/repository_connect.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/repository_connect_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/repository_connect_server.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/repository_connect_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/repository_connect_server_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/repository_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/repository_connect_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/repository_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/repository_create.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/repository_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/repository_create_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/repository_set_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/repository_set_parameters.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/repository_set_parameters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/repository_set_parameters_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/repository_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/repository_status.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/repository_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/repository_status_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/azure/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/azure/azure.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/azure/azure_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/azure/azure_opts.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/azure/azure_opts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/azure/azure_opts_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/azure/azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/azure/azure_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/fs/fs.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/fs/fs_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/fs/fs_opts.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/fs/fs_opts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/fs/fs_opts_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/fs/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/fs/fs_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/gcs/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/gcs/gcs.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/gcs/gcs_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/gcs/gcs_opts.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/gcs/gcs_opts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/gcs/gcs_opts_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/gcs/gcs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/gcs/gcs_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/s3/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/s3/s3.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/s3/s3_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/s3/s3_opts.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/s3/s3_opts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/s3/s3_opts_test.go -------------------------------------------------------------------------------- /pkg/kopia/cli/repository/storage/s3/s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/cli/repository/storage/s3/s3_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/blob.go -------------------------------------------------------------------------------- /pkg/kopia/command/blob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/blob_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/cache.go -------------------------------------------------------------------------------- /pkg/kopia/command/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/common.go -------------------------------------------------------------------------------- /pkg/kopia/command/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/common_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/const.go -------------------------------------------------------------------------------- /pkg/kopia/command/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/helpers.go -------------------------------------------------------------------------------- /pkg/kopia/command/maintenance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/maintenance.go -------------------------------------------------------------------------------- /pkg/kopia/command/maintenance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/maintenance_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/parse_command_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/parse_command_output.go -------------------------------------------------------------------------------- /pkg/kopia/command/parse_command_output_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/parse_command_output_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/policy_set_global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/policy_set_global.go -------------------------------------------------------------------------------- /pkg/kopia/command/policy_show_global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/policy_show_global.go -------------------------------------------------------------------------------- /pkg/kopia/command/policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/policy_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/repository.go -------------------------------------------------------------------------------- /pkg/kopia/command/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/repository_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/restore.go -------------------------------------------------------------------------------- /pkg/kopia/command/restore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/restore_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/server.go -------------------------------------------------------------------------------- /pkg/kopia/command/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/server_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/snapshot.go -------------------------------------------------------------------------------- /pkg/kopia/command/snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/snapshot_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/azure_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/azure_args.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/azure_args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/azure_args_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/filesystem_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/filesystem_args.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/filesystem_args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/filesystem_args_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/gcs_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/gcs_args.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/gcs_args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/gcs_args_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/s3_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/s3_args.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/s3_args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/s3_args_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/secret_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/secret_utils.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/secret_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/secret_utils_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/storage_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/storage_args.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/storage_args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/storage_args_test.go -------------------------------------------------------------------------------- /pkg/kopia/command/storage/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/command/storage/utils.go -------------------------------------------------------------------------------- /pkg/kopia/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/const.go -------------------------------------------------------------------------------- /pkg/kopia/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/errors/errors.go -------------------------------------------------------------------------------- /pkg/kopia/errors/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/errors/utils.go -------------------------------------------------------------------------------- /pkg/kopia/errors/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/errors/utils_test.go -------------------------------------------------------------------------------- /pkg/kopia/maintenance/get_maintenance_owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/maintenance/get_maintenance_owner.go -------------------------------------------------------------------------------- /pkg/kopia/maintenance/get_maintenance_owner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/maintenance/get_maintenance_owner_test.go -------------------------------------------------------------------------------- /pkg/kopia/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/register.go -------------------------------------------------------------------------------- /pkg/kopia/repository/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/repository/client.go -------------------------------------------------------------------------------- /pkg/kopia/repository/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/repository/client_test.go -------------------------------------------------------------------------------- /pkg/kopia/repository/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/repository/connect.go -------------------------------------------------------------------------------- /pkg/kopia/repository/connect_or_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/repository/connect_or_create.go -------------------------------------------------------------------------------- /pkg/kopia/repository/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/repository/create.go -------------------------------------------------------------------------------- /pkg/kopia/snapshot/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/snapshot/snapshot.go -------------------------------------------------------------------------------- /pkg/kopia/snapshot/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/snapshot/stream.go -------------------------------------------------------------------------------- /pkg/kopia/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kopia/utils.go -------------------------------------------------------------------------------- /pkg/ksprig/fipsonly_sprig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/ksprig/fipsonly_sprig.go -------------------------------------------------------------------------------- /pkg/ksprig/fipsonly_sprig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/ksprig/fipsonly_sprig_test.go -------------------------------------------------------------------------------- /pkg/kube/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/client.go -------------------------------------------------------------------------------- /pkg/kube/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/discover.go -------------------------------------------------------------------------------- /pkg/kube/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/exec.go -------------------------------------------------------------------------------- /pkg/kube/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/exec_test.go -------------------------------------------------------------------------------- /pkg/kube/fake_pod_command_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/fake_pod_command_executor.go -------------------------------------------------------------------------------- /pkg/kube/fake_pod_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/fake_pod_controller.go -------------------------------------------------------------------------------- /pkg/kube/fake_pod_controller_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/fake_pod_controller_processor.go -------------------------------------------------------------------------------- /pkg/kube/fips_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/fips_test.go -------------------------------------------------------------------------------- /pkg/kube/kube_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/kube_test.go -------------------------------------------------------------------------------- /pkg/kube/kubectl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/kubectl.go -------------------------------------------------------------------------------- /pkg/kube/log_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/log_reader.go -------------------------------------------------------------------------------- /pkg/kube/log_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/log_reader_test.go -------------------------------------------------------------------------------- /pkg/kube/log_tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/log_tail.go -------------------------------------------------------------------------------- /pkg/kube/log_tail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/log_tail_test.go -------------------------------------------------------------------------------- /pkg/kube/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod.go -------------------------------------------------------------------------------- /pkg/kube/pod_command_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_command_executor.go -------------------------------------------------------------------------------- /pkg/kube/pod_command_executor_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_command_executor_processor.go -------------------------------------------------------------------------------- /pkg/kube/pod_command_executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_command_executor_test.go -------------------------------------------------------------------------------- /pkg/kube/pod_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_controller.go -------------------------------------------------------------------------------- /pkg/kube/pod_controller_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_controller_processor.go -------------------------------------------------------------------------------- /pkg/kube/pod_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_controller_test.go -------------------------------------------------------------------------------- /pkg/kube/pod_file_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_file_writer.go -------------------------------------------------------------------------------- /pkg/kube/pod_file_writer_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_file_writer_processor.go -------------------------------------------------------------------------------- /pkg/kube/pod_file_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_file_writer_test.go -------------------------------------------------------------------------------- /pkg/kube/pod_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_runner.go -------------------------------------------------------------------------------- /pkg/kube/pod_runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_runner_test.go -------------------------------------------------------------------------------- /pkg/kube/pod_secure_defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_secure_defaults_test.go -------------------------------------------------------------------------------- /pkg/kube/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_test.go -------------------------------------------------------------------------------- /pkg/kube/pod_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_writer.go -------------------------------------------------------------------------------- /pkg/kube/pod_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/pod_writer_test.go -------------------------------------------------------------------------------- /pkg/kube/podinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/podinfo.go -------------------------------------------------------------------------------- /pkg/kube/podinfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/podinfo_test.go -------------------------------------------------------------------------------- /pkg/kube/snapshot/mocks/mock_snapshotter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/snapshot/mocks/mock_snapshotter.go -------------------------------------------------------------------------------- /pkg/kube/snapshot/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/snapshot/snapshot.go -------------------------------------------------------------------------------- /pkg/kube/snapshot/snapshot_stable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/snapshot/snapshot_stable.go -------------------------------------------------------------------------------- /pkg/kube/snapshot/snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/snapshot/snapshot_test.go -------------------------------------------------------------------------------- /pkg/kube/snapshot/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/snapshot/types.go -------------------------------------------------------------------------------- /pkg/kube/statefulset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/statefulset_test.go -------------------------------------------------------------------------------- /pkg/kube/testdata/ss-1volume-fmt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/testdata/ss-1volume-fmt.yaml -------------------------------------------------------------------------------- /pkg/kube/unstructured.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/unstructured.go -------------------------------------------------------------------------------- /pkg/kube/unstructured_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/unstructured_test.go -------------------------------------------------------------------------------- /pkg/kube/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/utils.go -------------------------------------------------------------------------------- /pkg/kube/volume/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/volume/volume.go -------------------------------------------------------------------------------- /pkg/kube/volume/volume_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/volume/volume_test.go -------------------------------------------------------------------------------- /pkg/kube/workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/workload.go -------------------------------------------------------------------------------- /pkg/kube/workload_ready_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/workload_ready_test.go -------------------------------------------------------------------------------- /pkg/kube/workload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/kube/workload_test.go -------------------------------------------------------------------------------- /pkg/location/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/location/location.go -------------------------------------------------------------------------------- /pkg/location/location_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/location/location_test.go -------------------------------------------------------------------------------- /pkg/log/fluentbit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/log/fluentbit.go -------------------------------------------------------------------------------- /pkg/log/fluentbit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/log/fluentbit_test.go -------------------------------------------------------------------------------- /pkg/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/log/log.go -------------------------------------------------------------------------------- /pkg/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/log/log_test.go -------------------------------------------------------------------------------- /pkg/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/log/logger.go -------------------------------------------------------------------------------- /pkg/logsafe/logsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/logsafe/logsafe.go -------------------------------------------------------------------------------- /pkg/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/metrics/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/metrics/metrics_test.go -------------------------------------------------------------------------------- /pkg/objectstore/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/objectstore/aws.go -------------------------------------------------------------------------------- /pkg/objectstore/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/objectstore/bucket.go -------------------------------------------------------------------------------- /pkg/objectstore/bucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/objectstore/bucket_test.go -------------------------------------------------------------------------------- /pkg/objectstore/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/objectstore/const.go -------------------------------------------------------------------------------- /pkg/objectstore/directory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/objectstore/directory.go -------------------------------------------------------------------------------- /pkg/objectstore/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/objectstore/helper.go -------------------------------------------------------------------------------- /pkg/objectstore/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/objectstore/models.go -------------------------------------------------------------------------------- /pkg/objectstore/objectstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/objectstore/objectstore.go -------------------------------------------------------------------------------- /pkg/objectstore/objectstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/objectstore/objectstore_test.go -------------------------------------------------------------------------------- /pkg/openshift/oc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/openshift/oc.go -------------------------------------------------------------------------------- /pkg/openshift/openshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/openshift/openshift.go -------------------------------------------------------------------------------- /pkg/output/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/output/output.go -------------------------------------------------------------------------------- /pkg/output/output_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/output/output_test.go -------------------------------------------------------------------------------- /pkg/output/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/output/stream.go -------------------------------------------------------------------------------- /pkg/output/stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/output/stream_test.go -------------------------------------------------------------------------------- /pkg/param/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/param/param.go -------------------------------------------------------------------------------- /pkg/param/param_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/param/param_test.go -------------------------------------------------------------------------------- /pkg/param/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/param/render.go -------------------------------------------------------------------------------- /pkg/param/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/param/render_test.go -------------------------------------------------------------------------------- /pkg/phase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/phase.go -------------------------------------------------------------------------------- /pkg/phase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/phase_test.go -------------------------------------------------------------------------------- /pkg/poll/poll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/poll/poll.go -------------------------------------------------------------------------------- /pkg/poll/poll_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/poll/poll_test.go -------------------------------------------------------------------------------- /pkg/postgres/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/postgres/client.go -------------------------------------------------------------------------------- /pkg/progress/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/progress/action.go -------------------------------------------------------------------------------- /pkg/progress/action_multi_actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/progress/action_multi_actions_test.go -------------------------------------------------------------------------------- /pkg/progress/action_multi_phases_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/progress/action_multi_phases_test.go -------------------------------------------------------------------------------- /pkg/progress/action_single_phase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/progress/action_single_phase_test.go -------------------------------------------------------------------------------- /pkg/reconcile/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/reconcile/reconcile.go -------------------------------------------------------------------------------- /pkg/reconcile/reconcile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/reconcile/reconcile_test.go -------------------------------------------------------------------------------- /pkg/resource/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/resource/resource.go -------------------------------------------------------------------------------- /pkg/resource/resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/resource/resource_test.go -------------------------------------------------------------------------------- /pkg/restic/restic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/restic/restic.go -------------------------------------------------------------------------------- /pkg/restic/restic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/restic/restic_test.go -------------------------------------------------------------------------------- /pkg/restic/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/restic/utils.go -------------------------------------------------------------------------------- /pkg/secrets/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/aws.go -------------------------------------------------------------------------------- /pkg/secrets/aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/aws_test.go -------------------------------------------------------------------------------- /pkg/secrets/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/azure.go -------------------------------------------------------------------------------- /pkg/secrets/azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/azure_test.go -------------------------------------------------------------------------------- /pkg/secrets/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/errors/error.go -------------------------------------------------------------------------------- /pkg/secrets/filestore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/filestore.go -------------------------------------------------------------------------------- /pkg/secrets/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/gcp.go -------------------------------------------------------------------------------- /pkg/secrets/gcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/gcp_test.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/aws_secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/aws_secrets.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/aws_secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/aws_secrets_test.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/azure_secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/azure_secrets.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/azure_secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/azure_secrets_test.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/const.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/filestore_secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/filestore_secrets.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/gcp_secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/gcp_secrets.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/gcp_secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/gcp_secrets_test.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/repository_password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/repository_password.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/repository_password_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/repository_password_test.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/s3compliant_secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/s3compliant_secrets.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/s3compliant_secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/s3compliant_secrets_test.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/secrets.go -------------------------------------------------------------------------------- /pkg/secrets/repositoryserver/secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/repositoryserver/secrets_test.go -------------------------------------------------------------------------------- /pkg/secrets/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/secrets.go -------------------------------------------------------------------------------- /pkg/secrets/secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/secrets/secrets_test.go -------------------------------------------------------------------------------- /pkg/stream/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/stream/stream.go -------------------------------------------------------------------------------- /pkg/testing/blueprints: -------------------------------------------------------------------------------- 1 | ../../pkg/blueprint/blueprints -------------------------------------------------------------------------------- /pkg/testing/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testing/e2e_test.go -------------------------------------------------------------------------------- /pkg/testing/helm/helm_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testing/helm/helm_app.go -------------------------------------------------------------------------------- /pkg/testing/helm/helm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testing/helm/helm_test.go -------------------------------------------------------------------------------- /pkg/testing/integration_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testing/integration_register.go -------------------------------------------------------------------------------- /pkg/testing/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testing/integration_test.go -------------------------------------------------------------------------------- /pkg/testing/testing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testing/testing_test.go -------------------------------------------------------------------------------- /pkg/testutil/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testutil/const.go -------------------------------------------------------------------------------- /pkg/testutil/fixture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testutil/fixture.go -------------------------------------------------------------------------------- /pkg/testutil/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testutil/func.go -------------------------------------------------------------------------------- /pkg/testutil/func_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testutil/func_test.go -------------------------------------------------------------------------------- /pkg/testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testutil/testutil.go -------------------------------------------------------------------------------- /pkg/testutil/testutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/testutil/testutil_test.go -------------------------------------------------------------------------------- /pkg/tools/grype_report_parser_tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/tools/grype_report_parser_tool.go -------------------------------------------------------------------------------- /pkg/tools/grype_report_parser_tool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/tools/grype_report_parser_tool_test.go -------------------------------------------------------------------------------- /pkg/tools/testdata/results_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/tools/testdata/results_invalid.json -------------------------------------------------------------------------------- /pkg/tools/testdata/results_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/tools/testdata/results_valid.json -------------------------------------------------------------------------------- /pkg/tools/testdata/results_valid_no_matches.json: -------------------------------------------------------------------------------- 1 | { 2 | "matches": [] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/utils/utils.go -------------------------------------------------------------------------------- /pkg/utils/volumesnapshot/azure-environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/utils/volumesnapshot/azure-environment.go -------------------------------------------------------------------------------- /pkg/utils/volumesnapshot/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/utils/volumesnapshot/const.go -------------------------------------------------------------------------------- /pkg/utils/volumesnapshot/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/utils/volumesnapshot/helper_test.go -------------------------------------------------------------------------------- /pkg/utils/volumesnapshot/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/utils/volumesnapshot/helpers.go -------------------------------------------------------------------------------- /pkg/utils/volumesnapshot/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/utils/volumesnapshot/models.go -------------------------------------------------------------------------------- /pkg/utils/volumesnapshot/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/utils/volumesnapshot/tags.go -------------------------------------------------------------------------------- /pkg/utils/volumesnapshot/tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/utils/volumesnapshot/tags_test.go -------------------------------------------------------------------------------- /pkg/validate/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/validate/error.go -------------------------------------------------------------------------------- /pkg/validate/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/validate/error_test.go -------------------------------------------------------------------------------- /pkg/validate/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/validate/validate.go -------------------------------------------------------------------------------- /pkg/validate/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/validate/validate_test.go -------------------------------------------------------------------------------- /pkg/validatingwebhook/blueprint_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/validatingwebhook/blueprint_handler.go -------------------------------------------------------------------------------- /pkg/validatingwebhook/repositoryserver_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/validatingwebhook/repositoryserver_handler.go -------------------------------------------------------------------------------- /pkg/validatingwebhook/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/validatingwebhook/utils.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /pkg/virtualfs/dir_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/virtualfs/dir_entry.go -------------------------------------------------------------------------------- /pkg/virtualfs/directory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/virtualfs/directory.go -------------------------------------------------------------------------------- /pkg/virtualfs/directory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/virtualfs/directory_test.go -------------------------------------------------------------------------------- /pkg/virtualfs/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/virtualfs/file.go -------------------------------------------------------------------------------- /pkg/virtualfs/file_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/virtualfs/file_reader.go -------------------------------------------------------------------------------- /pkg/virtualfs/symlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/virtualfs/symlink.go -------------------------------------------------------------------------------- /pkg/virtualfs/virtualfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/virtualfs/virtualfs.go -------------------------------------------------------------------------------- /pkg/virtualfs/virtualfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/pkg/virtualfs/virtualfs_test.go -------------------------------------------------------------------------------- /releasenotes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/releasenotes/README.md -------------------------------------------------------------------------------- /releasenotes/notes/prepare_data_fail-2740d1b81db18a85.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/releasenotes/notes/prepare_data_fail-2740d1b81db18a85.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rds-credentials-1fa9817a21a2d80a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/releasenotes/notes/rds-credentials-1fa9817a21a2d80a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/release-01e6c0f-restore-log-stream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/releasenotes/notes/release-01e6c0f-restore-log-stream.yaml -------------------------------------------------------------------------------- /releasenotes/notes/release-1c2fda5-adding-patch-operation-kubeops-function.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Support patch operation in the KubeOps function. -------------------------------------------------------------------------------- /releasenotes/notes/release-618246c-adding-failure-reasons-actionset-cr.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - Added failure reasons in ActionSet CR. -------------------------------------------------------------------------------- /releasenotes/notes/release-77ffaf0-updated-s3-profile-validation-documentation.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - Improved S3 profile validation error messages. -------------------------------------------------------------------------------- /reno.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/reno.yaml -------------------------------------------------------------------------------- /scripts/get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/scripts/get.sh -------------------------------------------------------------------------------- /secure_defaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanisterio/kanister/HEAD/secure_defaults.md --------------------------------------------------------------------------------