-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests: add db migration guide sample tests #380
base: main
Are you sure you want to change the base?
Conversation
- versionName: projects/$PROJECT_ID/secrets/PINECONE_INDEX_NAME/versions/1 | ||
env: "PINECONE_INDEX_NAME" | ||
- versionName: projects/$PROJECT_ID/secrets/CHROMADB_COLLECTION_NAME/versions/1 | ||
env: "CHROMADB_COLLECTION_NAME" | ||
- versionName: projects/$PROJECT_ID/secrets/MILVUS_COLLECTION_NAME/versions/1 | ||
env: "MILVUS_COLLECTION_NAME" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These don't need to be need to be secrets
env: "WEAVIATE_COLLECTION_NAME" | ||
- versionName: projects/$PROJECT_ID/secrets/QDRANT_COLLECTION_NAME/versions/1 | ||
env: "QDRANT_COLLECTION_NAME" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These don't need to be need to be secrets
- id: proxy-install | ||
name: alpine:3.10 | ||
entrypoint: sh | ||
args: | ||
- -c | ||
- | | ||
wget -O /workspace/alloydb-auth-proxy https://storage.googleapis.com/alloydb-auth-proxy/v1.11.0/alloydb-auth-proxy.linux.386 | ||
chmod +x /workspace/alloydb-auth-proxy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The proxy isn't needed if we are using the connector
args: | ||
- "-c" | ||
- | | ||
/workspace/alloydb-auth-proxy --port ${_DATABASE_PORT} ${_INSTANCE_CONNECTION_NAME} & sleep 2; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove proxy
pool: | ||
name: "projects/langchain-alloydb-testing/locations/us-central1/workerPools/my-pool2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed if running public ip
b/388979186