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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
GOARCH: amd64
GOPROXY: https://proxy.golang.org
JDK_VER: 13.0.x
DAPR_CLI_VER: 1.1.0-rc.1
DAPR_RUNTIME_VER: 1.1.0-rc.1
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/3dacfb672d55f1436c249057aaebbe597e1066f3/install/install.sh
DAPR_CLI_REF: e00080697f348c6123f67e16b22f3c5247d7ac99
DAPR_REF: 57582853ea5db9b6991bdcf07de6f61b165aa960
DAPR_CLI_VER: 1.2.0-rc.1
DAPR_RUNTIME_VER: 1.2.0-rc.3
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.2.0-rc.1/install/install.sh
DAPR_CLI_REF:
DAPR_REF:
OSSRH_USER_TOKEN: ${{ secrets.OSSRH_USER_TOKEN }}
OSSRH_PWD_TOKEN: ${{ secrets.OSSRH_PWD_TOKEN }}
GPG_KEY: ${{ secrets.GPG_KEY }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
GOARCH: amd64
GOPROXY: https://proxy.golang.org
JDK_VER: 13.0.x
DAPR_CLI_VER: 1.1.0-rc.1
DAPR_RUNTIME_VER: 1.1.0-rc.1
DAPR_CLI_VER: 1.2.0-rc.1
DAPR_RUNTIME_VER: 1.2.0-rc.3
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/3dacfb672d55f1436c249057aaebbe597e1066f3/install/install.sh
DAPR_CLI_REF: e00080697f348c6123f67e16b22f3c5247d7ac99
DAPR_REF: 57582853ea5db9b6991bdcf07de6f61b165aa960
DAPR_CLI_REF:
DAPR_REF:
steps:
- uses: actions/checkout@v2
- name: Set up OpenJDK ${{ env.JDK_VER }}
Expand Down
14 changes: 14 additions & 0 deletions examples/src/main/java/io/dapr/examples/exception/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,17 @@ Once running, the OutputBindingExample should print the output as follows:
...

```

### Cleanup

To stop the app run (or press `CTRL+C`):

<!-- STEP
name: Cleanup
-->

```bash
dapr stop --app-id exception_example
```

<!-- END_STEP -->
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ name: Cleanup
-->

```bash
dapr stop --app-id publisher
dapr stop --app-id subscriber
```

Expand Down
26 changes: 26 additions & 0 deletions examples/src/main/java/io/dapr/examples/secrets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,19 @@ Once running, the program should print the output as follows:
== APP == {"testVal":"value"}
```

To close the app either press `CTRL+C` or run

<!-- STEP
name: Cleanup first app
-->

```bash
dapr stop --app-id secrets1
```

<!-- END_STEP -->


The example's `config.yaml` is as follows:
```yaml
apiVersion: dapr.io/v1alpha1
Expand Down Expand Up @@ -252,6 +265,19 @@ Once running, the program should print the output as follows:
== APP == PERMISSION_DENIED: access denied by policy to get "randomKey" from "vault"
```

To close the app either press `CTRL+C` or run

<!-- STEP
name: Cleanup second app
-->

```bash
dapr stop --app-id secrets2
```

<!-- END_STEP -->


To clean up and bring the vault container down, run

<!-- STEP
Expand Down
14 changes: 14 additions & 0 deletions examples/src/main/java/io/dapr/examples/state/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,3 +202,17 @@ Once running, the OutputBindingExample should print the output as follows:
== APP == Done

```

### Cleanup

To close the app either press `CTRL+C` or run

<!-- STEP
name: Cleanup
-->

```bash
dapr stop --app-id state_example
```

<!-- END_STEP -->
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<grpc.version>1.33.1</grpc.version>
<protobuf.version>3.13.0</protobuf.version>
<dapr.proto.baseurl>https://raw.githubusercontent.com/dapr/dapr/57582853ea5db9b6991bdcf07de6f61b165aa960/dapr/proto</dapr.proto.baseurl>
<dapr.proto.baseurl>https://raw.githubusercontent.com/dapr/dapr/v1.2.0-rc.3/dapr/proto</dapr.proto.baseurl>
<os-maven-plugin.version>1.6.2</os-maven-plugin.version>
<maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
<maven-antrun-plugin.version>1.8</maven-antrun-plugin.version>
Expand Down