Skip to content
Open
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
3 changes: 1 addition & 2 deletions ark-demo/pipelines/nfhl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ gcloud functions deploy nfhl-pipeline-launcher
```

```
gsutil cp <NFHL gdb> gs://<trigger-bucket>
gcloud storage cp <NFHL gdb> gs://<trigger-bucket>
```


Expand All @@ -50,4 +50,3 @@ Acquires latest NFHL GDB files from FEMA's website and uploads to GCS
#### nfhl_pipeline.py

Dataflow pipeline to load staged GCS files into BigQuery

2 changes: 1 addition & 1 deletion ark-demo/pipelines/nhc_forecast/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ gcloud functions deploy nhc-pipeline-launcher
--trigger-bucket nhc-uploads
--source .

gsutil cp <NHC shp> gs://nhc-uploads
gcloud storage cp <NHC shp> gs://nhc-uploads
```
3 changes: 1 addition & 2 deletions geoserver-vm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ gcloud compute firewall-rules create allow-http-8080 --allow tcp:8080 --target-t
1. Create a terraform state bucket, e.g.

```
gsutil mb gs://geoserver-vm-tfstate
gcloud storage buckets create gs://geoserver-vm-tfstate
```

2. Deploy!
Expand All @@ -36,4 +36,3 @@ GOOGLE_APPLICATION_CREDENTIALS=your-key-file.json terraform apply
gcloud builds sbumit --subtitutions _TF_BUCKET=geoserver-vm-tfstate
```


4 changes: 2 additions & 2 deletions geoserver-vm/cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
steps:
- name: gcr.io/cloud-builders/gsutil
args: ['mb', 'gs://$_TF_BUCKET']
- name: gcr.io/cloud-builders/gcloud
args: ['storage', 'buckets', 'create', 'gs://$_TF_BUCKET']

- name: gcr.io/kaniko-project/executor
id: geoserver_vm_builder
Expand Down