Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deployment_gke_demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:

- name: Download Skaffold cache if exists
run: |
gsutil cp ${SKAFFOLD_CACHE_GCS} ~/.skaffold/ || true
gcloud storage cp ${SKAFFOLD_CACHE_GCS} ~/.skaffold/ || true

- name: Build and deploy to cluster
run: |
Expand All @@ -102,6 +102,6 @@ jobs:
- name: Upload Skaffold cache
if: always()
run: |
gsutil cp ~/.skaffold/cache ${SKAFFOLD_CACHE_GCS}
gcloud storage cp ~/.skaffold/cache ${SKAFFOLD_CACHE_GCS}

# copier:endraw
4 changes: 2 additions & 2 deletions .github/workflows/deployment_gke_develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Download Skaffold cache if exists
run: |
gsutil cp ${SKAFFOLD_CACHE_GCS} ~/.skaffold/ || true
gcloud storage cp ${SKAFFOLD_CACHE_GCS} ~/.skaffold/ || true

- name: Build and deploy to cluster
run: |
Expand All @@ -108,6 +108,6 @@ jobs:
- name: Upload Skaffold cache
if: always()
run: |
gsutil cp ~/.skaffold/cache ${SKAFFOLD_CACHE_GCS}
gcloud storage cp ~/.skaffold/cache ${SKAFFOLD_CACHE_GCS}

# copier:endraw
4 changes: 2 additions & 2 deletions .github/workflows/e2e_gke_api_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Download Skaffold cache if exists
run: |
gsutil cp $SKAFFOLD_CACHE_GCS ~/.skaffold/ || true
gcloud storage cp $SKAFFOLD_CACHE_GCS ~/.skaffold/ || true


- name: Build and deploy to cluster
Expand All @@ -101,7 +101,7 @@ jobs:
- name: Upload Skaffold cache
if: always()
run: |
gsutil cp ~/.skaffold/cache ${SKAFFOLD_CACHE_GCS}
gcloud storage cp ~/.skaffold/cache ${SKAFFOLD_CACHE_GCS}

e2e-api-test:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions components/common/src/common/utils/gcs_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def move_file_within_bucket(bucket_name, src_path, dest_path):
blob_name `str`: Final path of the file on the bucket
-------------------------------------------------------
Note:
if gsutil URI is
if object URI is
`gs://<bucket_name>/path/to/file/abc.txt`
then src_path and dest_path should be
`path/to/file/abc.txt`
Expand Down Expand Up @@ -415,7 +415,7 @@ def delete_file_from_gcs(bucket_name, src_path):
File will be deleted
-------------------------------------------------------
Note:
if gsutil URI is
if object URI is
`gs://<bucket_name>/path/to/file/abc.txt`
then src_path should be
`path/to/file/abc.txt`
Expand Down
2 changes: 1 addition & 1 deletion components/llm_service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ gcloud storage cp /path/to/agent_config.json gs://${PROJECT_ID}-config

Verify if the file has uploaded correctly to the bucket.
```
gsutil list gs://${PROJECT_ID}-config/agent_config.json
gcloud storage ls gs://${PROJECT_ID}-config/agent_config.json
```

Set up the environment variable `AGENT_CONFIG_PATH` accordingly:
Expand Down
Loading