Skip to content

Commit aad2d46

Browse files
committed
chore: remove all remaining sanchonet
1 parent e5ce8a6 commit aad2d46

File tree

6 files changed

+1
-48
lines changed

6 files changed

+1
-48
lines changed

.github/workflows/cardano-services.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,12 @@ name: cardano-services
4242
- dev-mainnet@us-east-1
4343
- dev-preprod@us-east-1@v2
4444
- dev-preview@us-east-1
45-
- dev-sanchonet@us-east-1
4645
- live-mainnet@eu-central-1@v2
4746
- live-mainnet@us-east-2@v2
4847
- live-preprod@eu-central-1@v2
4948
- live-preprod@us-east-2@v2
5049
- live-preview@eu-central-1@v2
5150
- live-preview@us-east-2@v2
52-
- live-sanchonet@eu-central-1
53-
- live-sanchonet@us-east-2
5451
- local-network@us-east-1@v1
5552
- ops-preprod-1@us-east-1
5653
- ops-preview-1@us-east-1

.github/workflows/k6-web-socket.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ on:
1919
options:
2020
- 'preview'
2121
- 'preprod'
22-
- 'sanchonet'
2322
- 'mainnet'
2423
wallets:
2524
description: 'Number of wallets to simulate'

.github/workflows/std.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ on:
2828
type: boolean
2929
required: true
3030
default: false
31-
deploy-dev-sanchonet:
32-
description: Deploy to dev-sanchonet
33-
type: boolean
34-
required: true
35-
default: false
3631
deploy-local-network:
3732
description: Deploy to local-network
3833
type: boolean
@@ -116,9 +111,6 @@ jobs:
116111
if [ "true" == ${{ inputs.deploy-dev-preview || (github.event_name == 'push' && github.ref_name == 'master') }} ] ; then
117112
echo '{"environment":"dev-preview", "target":"dev-preview@us-east-1", "url": "https://dev-preview.lw.iog.io/"}'
118113
fi
119-
if [ "true" == ${{ inputs.deploy-dev-sanchonet || (github.event_name == 'push' && github.ref_name == 'conway-era') }} ] ; then
120-
echo '{"environment":"dev-sanchonet", "target":"dev-sanchonet@us-east-1", "url": "https://dev-sanchonet.lw.iog.io/"}'
121-
fi
122114
if [ "true" == ${{ inputs.deploy-dev-preprod || false }} ] ; then
123115
echo '{"environment":"dev-preprod", "target":"dev-preprod@us-east-1@v2", "url": "https://dev-preprod.lw.iog.io/"}'
124116
fi

.github/workflows/test-deploy-e2e.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ on:
1818
options:
1919
- 'preview'
2020
- 'preprod'
21-
- 'sanchonet'
2221
cluster:
2322
description: 'Target cluster'
2423
type: choice

nix/cardano-services/deployments/default.nix

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -754,40 +754,6 @@ in
754754
};
755755
};
756756

757-
"live-sanchonet@us-east-2" = final: {
758-
namespace = "live-sanchonet";
759-
name = "${final.namespace}-cardanojs";
760-
network = "sanchonet";
761-
region = "us-east-2";
762-
context = "eks-admin";
763-
764-
providers = {
765-
backend = {
766-
enabled = true;
767-
};
768-
stake-pool-provider = {
769-
enabled = true;
770-
};
771-
chain-history-provider = {
772-
enabled = true;
773-
};
774-
};
775-
776-
projectors = {
777-
stake-pool = {
778-
enabled = true;
779-
};
780-
};
781-
782-
values = {
783-
blockfrost-worker.enabled = false;
784-
pg-boss-worker.enabled = true;
785-
cardano-services = {
786-
ingresOrder = 99;
787-
};
788-
};
789-
};
790-
791757
}
792758
# Convenient for cases when you need to create multiple temporary deployments with the same configuration
793759
// (builtins.mapAttrs (_: value: (final:

nix/cardano-services/deployments/options.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ in {
88
};
99

1010
network = lib.mkOption {
11-
type = types.enum ["mainnet" "preprod" "preview" "sanchonet" "local"];
11+
type = types.enum ["mainnet" "preprod" "preview" "local"];
1212
description = "Network of the deployment";
1313
};
1414
};

0 commit comments

Comments
 (0)