diff --git a/README.md b/README.md index ae4d740b9e..80e40eaa61 100644 --- a/README.md +++ b/README.md @@ -30,18 +30,18 @@ your storage infrastructure. ## Community Applications Stable Helm charts that have been updated with Kanister support. -- **[Cassandra](./examples/stable/cassandra)** -- **[Couchbase](./examples/stable/couchbase)** -- **[Elasticsearch](./examples/stable/elasticsearch)** -- **[FoundationDB](./examples/stable/foundationdb)** -- **[MongoDB on OpenShift using DeploymentConfig](./examples/stable/mongodb-deploymentconfig)** -- **[MongoDB](./examples/stable/mongodb)** -- **[MySQL on OpenShift using DeploymentConfig](./examples/stable/mysql-deploymentconfig)** -- **[MySQL](./examples/stable/mysql)** -- **[PostgreSQL with Point In Time Recovery (PITR)](./examples/stable/postgresql-wale)** +- **[Cassandra](./examples/cassandra)** +- **[Couchbase](./examples/couchbase)** +- **[Elasticsearch](./examples/elasticsearch)** +- **[FoundationDB](./examples/foundationdb)** +- **[MongoDB on OpenShift using DeploymentConfig](./examples/mongodb-deploymentconfig)** +- **[MongoDB](./examples/mongodb)** +- **[MySQL on OpenShift using DeploymentConfig](./examples/mysql-deploymentconfig)** +- **[MySQL](./examples/mysql)** +- **[PostgreSQL with Point In Time Recovery (PITR)](./examples/postgresql-wale)** - **[ETCD](./examples/etcd/etcd-in-cluster)** -- **[PostgreSQL on OpenShift using DeploymentConfig](./examples/stable/postgresql-deploymentconfig)** -- **[PostgreSQL](./examples/stable/postgresql)** +- **[PostgreSQL on OpenShift using DeploymentConfig](./examples/postgresql-deploymentconfig)** +- **[PostgreSQL](./examples/postgresql)** ## Kanister in action for MySQL Database diff --git a/docs/tooling.rst b/docs/tooling.rst index b7333453fb..9679760723 100644 --- a/docs/tooling.rst +++ b/docs/tooling.rst @@ -299,7 +299,7 @@ using ``-f`` flag and optionally ``-v`` flag for kanister function version. .. substitution-code-block:: bash # Download mysql blueprint locally - $ curl -O https://raw.githubusercontent.com/kanisterio/kanister/|version|/examples/stable/mysql/mysql-blueprint.yaml + $ curl -O https://raw.githubusercontent.com/kanisterio/kanister/|version|/examples/mysql/mysql-blueprint.yaml # Run blueprint validator $ kanctl validate blueprint -f mysql-blueprint.yaml diff --git a/examples/README.md b/examples/README.md index 54faa15ef9..159768cdc0 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,32 +1,15 @@ # Examples -## Helm Examples +This folder contains some Helm charts that have been updated to include Kanister +blueprints, to make experimenting with Kanister easier. -To make it easier to experiment with Kanister, we have modified a few upstream Helm charts to add Kanister Blueprints as well as easily configure the application via Helm. More information on these is available in the [kanister docs](https://docs.kanister.io/helm.html) with a brief summary available below: +If you are new to Kanister, start with the `time-log` blueprint. After that, +feel free to try out some of the more advanced examples like the blueprints for +MySQL, PgSQL, MongoDB and ElasticSearch, following the instructions in the +[Kanister documentation](https://docs.kanister.io/helm.html#kanister-enabled-applications). +Every example has its own README.md with information on how to set things up and +commands to be run. -* `kanister-mongodb-replicaset/` - - Dynamically scaleable MongoDB replica set protected using mongodump - -* `kanister-mysql/` - - Single-node MySQL deployment protected using mysqldump. - -* `kanister-postgresql/` - - PostgreSQL deployment protected using continuous archiving of PostgreSQL WAL files and base backups. Supports advanced features such as Point-In-Time-Restore (PITR). - -## Non-Helm Examples - -* `mongo-sidecar/` - - MongoDB statefulset with a Kanister sidecar. Uses monogdump. - -* `postgres-basic-pgdump/` - - Unmodified PostgreSQL deployment (deployed via the Patroni operator) and protected using `pg_dumpall`. - -* `time-log/` - - Kanister tutorial. Demonstrates Kanister features using a simple time-logger deployment. +Found a mistake in a blueprint? Having difficulty getting the blueprints to +work? Find us on the Kanister [Slack](kanisterio.slack.com). diff --git a/examples/stable/cassandra/README.md b/examples/cassandra/README.md similarity index 100% rename from examples/stable/cassandra/README.md rename to examples/cassandra/README.md diff --git a/examples/stable/cassandra/cassandra-blueprint.yaml b/examples/cassandra/cassandra-blueprint.yaml similarity index 100% rename from examples/stable/cassandra/cassandra-blueprint.yaml rename to examples/cassandra/cassandra-blueprint.yaml diff --git a/examples/stable/couchbase/README.md b/examples/couchbase/README.md similarity index 100% rename from examples/stable/couchbase/README.md rename to examples/couchbase/README.md diff --git a/examples/stable/couchbase/blueprint-v2/couchbase-blueprint.yaml b/examples/couchbase/blueprint-v2/couchbase-blueprint.yaml similarity index 100% rename from examples/stable/couchbase/blueprint-v2/couchbase-blueprint.yaml rename to examples/couchbase/blueprint-v2/couchbase-blueprint.yaml diff --git a/examples/stable/couchbase/couchbase-blueprint.yaml b/examples/couchbase/couchbase-blueprint.yaml similarity index 100% rename from examples/stable/couchbase/couchbase-blueprint.yaml rename to examples/couchbase/couchbase-blueprint.yaml diff --git a/examples/stable/couchbase/kanister-clusteradmin-binding.yaml b/examples/couchbase/kanister-clusteradmin-binding.yaml similarity index 100% rename from examples/stable/couchbase/kanister-clusteradmin-binding.yaml rename to examples/couchbase/kanister-clusteradmin-binding.yaml diff --git a/examples/stable/csi-snapshot/README.md b/examples/csi-snapshot/README.md similarity index 95% rename from examples/stable/csi-snapshot/README.md rename to examples/csi-snapshot/README.md index 02f7aa6f17..7f05502ebf 100644 --- a/examples/stable/csi-snapshot/README.md +++ b/examples/csi-snapshot/README.md @@ -37,10 +37,10 @@ Sun Jan 23 08:54:39 UTC 2022 Create the Blueprint in `kanister` namespace -> **Note**: This example uses a Kubernetes cluster on DigitalOcean. Therefore the `snapshotClass` and `storageClass` in the following `./examples/stable/csi-snapshot/csi-snapshot-blueprint.yaml` file are set to `do-block-storage`. Change the arguments appropriately before creating the blueprint. +> **Note**: This example uses a Kubernetes cluster on DigitalOcean. Therefore the `snapshotClass` and `storageClass` in the following `./examples/csi-snapshot/csi-snapshot-blueprint.yaml` file are set to `do-block-storage`. Change the arguments appropriately before creating the blueprint. ```bash -$ kubectl create -f ./examples/stable/csi-snapshot/csi-snapshot-blueprint.yaml -n kanister +$ kubectl create -f ./examples/csi-snapshot/csi-snapshot-blueprint.yaml -n kanister ``` ### Backup the application data diff --git a/examples/stable/csi-snapshot/csi-snapshot-blueprint.yaml b/examples/csi-snapshot/csi-snapshot-blueprint.yaml similarity index 100% rename from examples/stable/csi-snapshot/csi-snapshot-blueprint.yaml rename to examples/csi-snapshot/csi-snapshot-blueprint.yaml diff --git a/examples/stable/elasticsearch/README.md b/examples/elasticsearch/README.md similarity index 98% rename from examples/stable/elasticsearch/README.md rename to examples/elasticsearch/README.md index 7b44f4fce9..68ae896626 100644 --- a/examples/stable/elasticsearch/README.md +++ b/examples/elasticsearch/README.md @@ -122,7 +122,7 @@ $ curl 'localhost:9200/customer/_search?q=*&pretty' In order to perform backup, restore, and delete operations on the running elasticsearch, we need to create a blueprint. You can create that using the command below from the root of kanister repo. ```bash -kubectl create -f ./examples/stable/elasticsearch/elasticsearch-blueprint.yaml -n kasten-io +kubectl create -f ./examples/elasticsearch/elasticsearch-blueprint.yaml -n kasten-io ``` ## Protect the Application diff --git a/examples/stable/elasticsearch/blueprint-v2/elasticsearch-blueprint.yaml b/examples/elasticsearch/blueprint-v2/elasticsearch-blueprint.yaml similarity index 100% rename from examples/stable/elasticsearch/blueprint-v2/elasticsearch-blueprint.yaml rename to examples/elasticsearch/blueprint-v2/elasticsearch-blueprint.yaml diff --git a/examples/stable/elasticsearch/elasticsearch-blueprint.yaml b/examples/elasticsearch/elasticsearch-blueprint.yaml similarity index 100% rename from examples/stable/elasticsearch/elasticsearch-blueprint.yaml rename to examples/elasticsearch/elasticsearch-blueprint.yaml diff --git a/examples/stable/elasticsearch/extraInitContainers.yaml b/examples/elasticsearch/extraInitContainers.yaml similarity index 100% rename from examples/stable/elasticsearch/extraInitContainers.yaml rename to examples/elasticsearch/extraInitContainers.yaml diff --git a/examples/stable/foundationdb/README.md b/examples/foundationdb/README.md similarity index 100% rename from examples/stable/foundationdb/README.md rename to examples/foundationdb/README.md diff --git a/examples/stable/foundationdb/blueprint-v2/foundationdb-blueprint.yaml b/examples/foundationdb/blueprint-v2/foundationdb-blueprint.yaml similarity index 100% rename from examples/stable/foundationdb/blueprint-v2/foundationdb-blueprint.yaml rename to examples/foundationdb/blueprint-v2/foundationdb-blueprint.yaml diff --git a/examples/stable/foundationdb/foundationdb-blueprint.yaml b/examples/foundationdb/foundationdb-blueprint.yaml similarity index 100% rename from examples/stable/foundationdb/foundationdb-blueprint.yaml rename to examples/foundationdb/foundationdb-blueprint.yaml diff --git a/examples/stable/foundationdb/kanister-clusteradmin-binding.yaml b/examples/foundationdb/kanister-clusteradmin-binding.yaml similarity index 100% rename from examples/stable/foundationdb/kanister-clusteradmin-binding.yaml rename to examples/foundationdb/kanister-clusteradmin-binding.yaml diff --git a/examples/stable/foundationdb/local_cluster.yaml b/examples/foundationdb/local_cluster.yaml similarity index 100% rename from examples/stable/foundationdb/local_cluster.yaml rename to examples/foundationdb/local_cluster.yaml diff --git a/examples/stable/maria/README.md b/examples/maria/README.md similarity index 100% rename from examples/stable/maria/README.md rename to examples/maria/README.md diff --git a/examples/stable/maria/blueprint-v2/maria-blueprint.yaml b/examples/maria/blueprint-v2/maria-blueprint.yaml similarity index 100% rename from examples/stable/maria/blueprint-v2/maria-blueprint.yaml rename to examples/maria/blueprint-v2/maria-blueprint.yaml diff --git a/examples/stable/maria/maria-blueprint.yaml b/examples/maria/maria-blueprint.yaml similarity index 100% rename from examples/stable/maria/maria-blueprint.yaml rename to examples/maria/maria-blueprint.yaml diff --git a/examples/stable/mongodb-deploymentconfig/README.md b/examples/mongodb-deploymentconfig/README.md similarity index 100% rename from examples/stable/mongodb-deploymentconfig/README.md rename to examples/mongodb-deploymentconfig/README.md diff --git a/examples/stable/mongodb-deploymentconfig/blueprint-v2/mongo-dep-config-blueprint.yaml b/examples/mongodb-deploymentconfig/blueprint-v2/mongo-dep-config-blueprint.yaml similarity index 100% rename from examples/stable/mongodb-deploymentconfig/blueprint-v2/mongo-dep-config-blueprint.yaml rename to examples/mongodb-deploymentconfig/blueprint-v2/mongo-dep-config-blueprint.yaml diff --git a/examples/stable/mongodb-deploymentconfig/mongo-dep-config-blueprint.yaml b/examples/mongodb-deploymentconfig/mongo-dep-config-blueprint.yaml similarity index 100% rename from examples/stable/mongodb-deploymentconfig/mongo-dep-config-blueprint.yaml rename to examples/mongodb-deploymentconfig/mongo-dep-config-blueprint.yaml diff --git a/examples/stable/mongodb-restic/README.md b/examples/mongodb-restic/README.md similarity index 100% rename from examples/stable/mongodb-restic/README.md rename to examples/mongodb-restic/README.md diff --git a/examples/stable/mongodb-restic/mongodb-blueprint.yaml b/examples/mongodb-restic/mongodb-blueprint.yaml similarity index 100% rename from examples/stable/mongodb-restic/mongodb-blueprint.yaml rename to examples/mongodb-restic/mongodb-blueprint.yaml diff --git a/examples/stable/mongodb/7.8.10/mongo-blueprint.yaml b/examples/mongodb/7.8.10/mongo-blueprint.yaml similarity index 100% rename from examples/stable/mongodb/7.8.10/mongo-blueprint.yaml rename to examples/mongodb/7.8.10/mongo-blueprint.yaml diff --git a/examples/stable/mongodb/README.md b/examples/mongodb/README.md similarity index 100% rename from examples/stable/mongodb/README.md rename to examples/mongodb/README.md diff --git a/examples/stable/mongodb/blueprint-v2/mongo-blueprint.yaml b/examples/mongodb/blueprint-v2/mongo-blueprint.yaml similarity index 100% rename from examples/stable/mongodb/blueprint-v2/mongo-blueprint.yaml rename to examples/mongodb/blueprint-v2/mongo-blueprint.yaml diff --git a/examples/stable/mongodb/mongo-blueprint.yaml b/examples/mongodb/mongo-blueprint.yaml similarity index 100% rename from examples/stable/mongodb/mongo-blueprint.yaml rename to examples/mongodb/mongo-blueprint.yaml diff --git a/examples/stable/mssql/README.md b/examples/mssql/README.md similarity index 100% rename from examples/stable/mssql/README.md rename to examples/mssql/README.md diff --git a/examples/stable/mssql/blueprint-v2/mssql-blueprint.yaml b/examples/mssql/blueprint-v2/mssql-blueprint.yaml similarity index 100% rename from examples/stable/mssql/blueprint-v2/mssql-blueprint.yaml rename to examples/mssql/blueprint-v2/mssql-blueprint.yaml diff --git a/examples/stable/mssql/mssql-blueprint.yaml b/examples/mssql/mssql-blueprint.yaml similarity index 100% rename from examples/stable/mssql/mssql-blueprint.yaml rename to examples/mssql/mssql-blueprint.yaml diff --git a/examples/stable/mysql-deploymentconfig/README.md b/examples/mysql-deploymentconfig/README.md similarity index 100% rename from examples/stable/mysql-deploymentconfig/README.md rename to examples/mysql-deploymentconfig/README.md diff --git a/examples/stable/mysql-deploymentconfig/blueprint-v2/mysql-dep-config-blueprint.yaml b/examples/mysql-deploymentconfig/blueprint-v2/mysql-dep-config-blueprint.yaml similarity index 100% rename from examples/stable/mysql-deploymentconfig/blueprint-v2/mysql-dep-config-blueprint.yaml rename to examples/mysql-deploymentconfig/blueprint-v2/mysql-dep-config-blueprint.yaml diff --git a/examples/stable/mysql-deploymentconfig/mysql-dep-config-blueprint.yaml b/examples/mysql-deploymentconfig/mysql-dep-config-blueprint.yaml similarity index 100% rename from examples/stable/mysql-deploymentconfig/mysql-dep-config-blueprint.yaml rename to examples/mysql-deploymentconfig/mysql-dep-config-blueprint.yaml diff --git a/examples/stable/mysql/6.x/README.md b/examples/mysql/6.x/README.md similarity index 100% rename from examples/stable/mysql/6.x/README.md rename to examples/mysql/6.x/README.md diff --git a/examples/stable/mysql/6.x/mysql-blueprint.yaml b/examples/mysql/6.x/mysql-blueprint.yaml similarity index 100% rename from examples/stable/mysql/6.x/mysql-blueprint.yaml rename to examples/mysql/6.x/mysql-blueprint.yaml diff --git a/examples/stable/mysql/README.md b/examples/mysql/README.md similarity index 100% rename from examples/stable/mysql/README.md rename to examples/mysql/README.md diff --git a/examples/stable/mysql/blueprint-v2/mysql-blueprint.yaml b/examples/mysql/blueprint-v2/mysql-blueprint.yaml similarity index 100% rename from examples/stable/mysql/blueprint-v2/mysql-blueprint.yaml rename to examples/mysql/blueprint-v2/mysql-blueprint.yaml diff --git a/examples/stable/mysql/mysql-blueprint.yaml b/examples/mysql/mysql-blueprint.yaml similarity index 100% rename from examples/stable/mysql/mysql-blueprint.yaml rename to examples/mysql/mysql-blueprint.yaml diff --git a/examples/stable/postgresql-deploymentconfig/README.md b/examples/postgresql-deploymentconfig/README.md similarity index 100% rename from examples/stable/postgresql-deploymentconfig/README.md rename to examples/postgresql-deploymentconfig/README.md diff --git a/examples/stable/postgresql-deploymentconfig/blueprint-v2/postgres-dep-config-blueprint.yaml b/examples/postgresql-deploymentconfig/blueprint-v2/postgres-dep-config-blueprint.yaml similarity index 100% rename from examples/stable/postgresql-deploymentconfig/blueprint-v2/postgres-dep-config-blueprint.yaml rename to examples/postgresql-deploymentconfig/blueprint-v2/postgres-dep-config-blueprint.yaml diff --git a/examples/stable/postgresql-deploymentconfig/postgres-dep-config-blueprint.yaml b/examples/postgresql-deploymentconfig/postgres-dep-config-blueprint.yaml similarity index 100% rename from examples/stable/postgresql-deploymentconfig/postgres-dep-config-blueprint.yaml rename to examples/postgresql-deploymentconfig/postgres-dep-config-blueprint.yaml diff --git a/examples/stable/postgresql-ha/hook-blueprint/README.md b/examples/postgresql-ha/hook-blueprint/README.md similarity index 100% rename from examples/stable/postgresql-ha/hook-blueprint/README.md rename to examples/postgresql-ha/hook-blueprint/README.md diff --git a/examples/stable/postgresql-ha/hook-blueprint/postgres-ha-hook.yaml b/examples/postgresql-ha/hook-blueprint/postgres-ha-hook.yaml similarity index 100% rename from examples/stable/postgresql-ha/hook-blueprint/postgres-ha-hook.yaml rename to examples/postgresql-ha/hook-blueprint/postgres-ha-hook.yaml diff --git a/examples/stable/postgresql-wale/README.md b/examples/postgresql-wale/README.md similarity index 100% rename from examples/stable/postgresql-wale/README.md rename to examples/postgresql-wale/README.md diff --git a/examples/stable/postgresql-wale/postgresql-blueprint.yaml b/examples/postgresql-wale/postgresql-blueprint.yaml similarity index 100% rename from examples/stable/postgresql-wale/postgresql-blueprint.yaml rename to examples/postgresql-wale/postgresql-blueprint.yaml diff --git a/examples/stable/postgresql/README.md b/examples/postgresql/README.md similarity index 100% rename from examples/stable/postgresql/README.md rename to examples/postgresql/README.md diff --git a/examples/stable/postgresql/blueprint-v2/postgres-blueprint.yaml b/examples/postgresql/blueprint-v2/postgres-blueprint.yaml similarity index 100% rename from examples/stable/postgresql/blueprint-v2/postgres-blueprint.yaml rename to examples/postgresql/blueprint-v2/postgres-blueprint.yaml diff --git a/examples/stable/postgresql/postgres-blueprint.yaml b/examples/postgresql/postgres-blueprint.yaml similarity index 100% rename from examples/stable/postgresql/postgres-blueprint.yaml rename to examples/postgresql/postgres-blueprint.yaml diff --git a/examples/stable/postgresql/v10.16.2/postgres-blueprint.yaml b/examples/postgresql/v10.16.2/postgres-blueprint.yaml similarity index 100% rename from examples/stable/postgresql/v10.16.2/postgres-blueprint.yaml rename to examples/postgresql/v10.16.2/postgres-blueprint.yaml diff --git a/examples/stable/postgresql/v8.6.4/postgres-blueprint.yaml b/examples/postgresql/v8.6.4/postgres-blueprint.yaml similarity index 100% rename from examples/stable/postgresql/v8.6.4/postgres-blueprint.yaml rename to examples/postgresql/v8.6.4/postgres-blueprint.yaml diff --git a/pkg/blueprint/blueprints/cassandra-blueprint.yaml b/pkg/blueprint/blueprints/cassandra-blueprint.yaml index 9fe85b10c5..eaf74e7450 120000 --- a/pkg/blueprint/blueprints/cassandra-blueprint.yaml +++ b/pkg/blueprint/blueprints/cassandra-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/cassandra/cassandra-blueprint.yaml \ No newline at end of file +../../../examples/cassandra/cassandra-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/couchbase-blueprint.yaml b/pkg/blueprint/blueprints/couchbase-blueprint.yaml index b2980c2c98..7ab87bdbcf 120000 --- a/pkg/blueprint/blueprints/couchbase-blueprint.yaml +++ b/pkg/blueprint/blueprints/couchbase-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/couchbase/couchbase-blueprint.yaml \ No newline at end of file +../../../examples/couchbase/couchbase-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/elasticsearch-blueprint.yaml b/pkg/blueprint/blueprints/elasticsearch-blueprint.yaml index 6300133a69..de1b086bc5 120000 --- a/pkg/blueprint/blueprints/elasticsearch-blueprint.yaml +++ b/pkg/blueprint/blueprints/elasticsearch-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/elasticsearch/elasticsearch-blueprint.yaml \ No newline at end of file +../../../examples/elasticsearch/elasticsearch-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/foundationdb-blueprint.yaml b/pkg/blueprint/blueprints/foundationdb-blueprint.yaml index 8ebc82cf3f..df7035ccaf 120000 --- a/pkg/blueprint/blueprints/foundationdb-blueprint.yaml +++ b/pkg/blueprint/blueprints/foundationdb-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/foundationdb/foundationdb-blueprint.yaml \ No newline at end of file +../../../examples/foundationdb/foundationdb-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/maria-blueprint.yaml b/pkg/blueprint/blueprints/maria-blueprint.yaml index 37de82242e..ce270986e3 120000 --- a/pkg/blueprint/blueprints/maria-blueprint.yaml +++ b/pkg/blueprint/blueprints/maria-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/maria/maria-blueprint.yaml \ No newline at end of file +../../../examples/maria/maria-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/mongo-blueprint.yaml b/pkg/blueprint/blueprints/mongo-blueprint.yaml index 358e914462..892b8981f8 120000 --- a/pkg/blueprint/blueprints/mongo-blueprint.yaml +++ b/pkg/blueprint/blueprints/mongo-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/mongodb/mongo-blueprint.yaml \ No newline at end of file +../../../examples/mongodb/mongo-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/mongo-dep-config-blueprint.yaml b/pkg/blueprint/blueprints/mongo-dep-config-blueprint.yaml index dbb9fbaaca..71bc366aa3 120000 --- a/pkg/blueprint/blueprints/mongo-dep-config-blueprint.yaml +++ b/pkg/blueprint/blueprints/mongo-dep-config-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/mongodb-deploymentconfig/mongo-dep-config-blueprint.yaml \ No newline at end of file +../../../examples/mongodb-deploymentconfig/mongo-dep-config-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/mssql-blueprint.yaml b/pkg/blueprint/blueprints/mssql-blueprint.yaml index 851196f47e..23cae1a408 120000 --- a/pkg/blueprint/blueprints/mssql-blueprint.yaml +++ b/pkg/blueprint/blueprints/mssql-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/mssql/mssql-blueprint.yaml \ No newline at end of file +../../../examples/mssql/mssql-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/mysql-blueprint.yaml b/pkg/blueprint/blueprints/mysql-blueprint.yaml index bc858b9126..04ed175937 120000 --- a/pkg/blueprint/blueprints/mysql-blueprint.yaml +++ b/pkg/blueprint/blueprints/mysql-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/mysql/mysql-blueprint.yaml \ No newline at end of file +../../../examples/mysql/mysql-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/mysql-dep-config-blueprint.yaml b/pkg/blueprint/blueprints/mysql-dep-config-blueprint.yaml index 3511ae3fd7..8a9dcc2b54 120000 --- a/pkg/blueprint/blueprints/mysql-dep-config-blueprint.yaml +++ b/pkg/blueprint/blueprints/mysql-dep-config-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/mysql-deploymentconfig/mysql-dep-config-blueprint.yaml \ No newline at end of file +../../../examples/mysql-deploymentconfig/mysql-dep-config-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/pitr-postgres-blueprint.yaml b/pkg/blueprint/blueprints/pitr-postgres-blueprint.yaml index 14d24c9d77..82921d93a9 120000 --- a/pkg/blueprint/blueprints/pitr-postgres-blueprint.yaml +++ b/pkg/blueprint/blueprints/pitr-postgres-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/postgresql-wale/postgresql-blueprint.yaml \ No newline at end of file +../../../examples/postgresql-wale/postgresql-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/postgres-blueprint.yaml b/pkg/blueprint/blueprints/postgres-blueprint.yaml index 1ea33ce5ce..84843dc3c8 120000 --- a/pkg/blueprint/blueprints/postgres-blueprint.yaml +++ b/pkg/blueprint/blueprints/postgres-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/postgresql/postgres-blueprint.yaml \ No newline at end of file +../../../examples/postgresql/postgres-blueprint.yaml \ No newline at end of file diff --git a/pkg/blueprint/blueprints/postgres-dep-config-blueprint.yaml b/pkg/blueprint/blueprints/postgres-dep-config-blueprint.yaml index 037f061533..0337893083 120000 --- a/pkg/blueprint/blueprints/postgres-dep-config-blueprint.yaml +++ b/pkg/blueprint/blueprints/postgres-dep-config-blueprint.yaml @@ -1 +1 @@ -../../../examples/stable/postgresql-deploymentconfig/postgres-dep-config-blueprint.yaml \ No newline at end of file +../../../examples/postgresql-deploymentconfig/postgres-dep-config-blueprint.yaml \ No newline at end of file