-
Notifications
You must be signed in to change notification settings - Fork 87
61 lines (52 loc) · 1.6 KB
/
migration-paths.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: 'Migration testing'
on:
workflow_dispatch: {}
jobs:
create-index-legacy-paid:
name: Migration testing
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
index_name:
- migration-testing-index
env:
- asia-southeast1-gcp
# - asia-northeast1-gcp
# - eu-west1-gcp
# - eu-west4-gcp
# - northamerica-northeast1-gcp
# - us-central1-gcp
# - us-east1-gcp
# - us-east4-gcp
# - us-west1-gcp
# - us-west4-gcp
# - eastus-azure
# - us-east-1-aws
# - gcp-starter
# - asia-southeast1-gcp-free
# - us-west1-gcp-free
# - us-west4-gcp-free
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create on legacy control plane
id: create-legacy
uses: ./.github/actions/create-index-legacy
with:
PINECONE_API_KEY: ${{ secrets.V3MIGRATION_API_KEY__ONE_KEY_MANY_ENVS }}
PINECONE_ENVIRONMENT: ${{ matrix.env }}
pinecone_client_version: 2.2.4
index_name: ${{ matrix.index_name }}
dimension: 1536
metric: cosine
- name: Inspect on GCPS
id: inspect-gcps
uses: ./.github/actions/test-legacy-index
with:
PINECONE_API_KEY: ${{ secrets.V3MIGRATION_API_KEY__ONE_KEY_MANY_ENVS }}
PINECONE_ENVIRONMENT: ${{ matrix.env }}
pinecone_client_version: 3.0.0.dev8
index_name: ${{ matrix.index_name }}
dimension: 1536
metric: cosine