Skip to content
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

Users can configure backup storage #10264

Closed
Tracked by #9606
deepthidevaki opened this issue Sep 2, 2022 · 1 comment · Fixed by #10335
Closed
Tracked by #9606

Users can configure backup storage #10264

deepthidevaki opened this issue Sep 2, 2022 · 1 comment · Fixed by #10335
Assignees
Labels
version:8.1.0 Marks an issue as being completely or in parts released in 8.1.0

Comments

@deepthidevaki
Copy link
Contributor

deepthidevaki commented Sep 2, 2022

Currently we support on S3 as backup store. But for future compatibility, the user must be able to specify which backup store to use and configure them.

For S3 backup store, following parameters must be configurable

  • bucket name
  • S3 endpoint
  • credentials

Reference #10220

@deepthidevaki deepthidevaki changed the title Users can configure backup storage (depending on which storage we support). Users can configure backup storage Sep 2, 2022
@deepthidevaki
Copy link
Contributor Author

Currently we support only s3. But in future, we may support more stores. So a user must be able to specify which store to use for backup and configure it. In addition, it might be useful to allow community contributed backup stores similar to the exporters. So the config that we define now must be extendable without breaking compatability.

For that I can think of two way of configuring it.

Option 1:

Similar to Exporter configuration

jarPath:
className:
Map<String, Object> args:

Example:

className: io.camunda.zeebe.backup.s3.S3BackupStore
args:
  bucketName:
  credentials:
  endpoint:

Zeebe can instantiate a backup store using the given className and arguments. This way both internally supported stores and external implementations are configured similarly.

Option 2:

Differentiate between internally supported stores and external stores.

Example

type: s3
args:
  bucketName:
  endpoint: 
  credentials:
	
(if we support gcs in future)
type: gcs
args:
  gcp-specific-parameters:

For external store implementations, we can define the type as external. Similar to export configuration, they should then provide the className, path and args.

type: external
args:
  jarPath:
  className:
  other_args:

We do not have to support external implementations now. So we can define the config and implement support for it later.

@deepthidevaki deepthidevaki self-assigned this Sep 13, 2022
zeebe-bors-camunda bot added a commit that referenced this issue Sep 13, 2022
10332: deps(maven): bump rest-assured from 5.1.1 to 5.2.0 r=npepinpe a=dependabot[bot]

Bumps [rest-assured](https://github.com/rest-assured/rest-assured) from 5.1.1 to 5.2.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/rest-assured/rest-assured/blob/master/changelog.txt">rest-assured's changelog</a>.</em></p>
<blockquote>
<h2>Changelog 5.2.0 (2022-09-09)</h2>
<ul>
<li>
<p>Improved FilterContext used in Filters by adding the method FilterContext#hasValue(name, object). This makes it easier to check if a value exists <em>and</em> is equal to the expect object.</p>
</li>
<li>
<p>Introducing a much improved CSRF (cross-site request forgery) support. For example:
given().
csrf(&quot;/users&quot;).
formParm(&quot;firstName&quot;, &quot;John&quot;).
formParm(&quot;lastName&quot;, &quot;Doe&quot;).
when().
post(&quot;/users&quot;).
then().
statusCode(200);</p>
<p>This will first make a GET request to /users (due to csrf(&quot;/users&quot;)) to get an HTML page that contains the CSRF token.
Rest Assured will then automatically try to find the input field that contains the CSRF token and include in the POST to /users.</p>
<p>Here's an example of what Rest Assured expects as a response for the GET request to /users:</p>
<!-- raw HTML omitted -->
</li>
<li>
<p>Fixed so that form authentication takes CSRF into account. The previous form authentication CSRF implementation didn't really work (sorry!).
Now you can combine csrf with form authentication and it actually works as expected! Note that for requests other than GET or HEAD,
you need to specify <em>both</em> form authentication <em>and</em> csrf, e.g.</p>
<p>given().
csrf(&quot;/users&quot;).
formParm(&quot;firstName&quot;, &quot;John&quot;).
formParm(&quot;lastName&quot;, &quot;Doe&quot;).</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/rest-assured/rest-assured/commit/c8e4ca53e4e0bc3ee761b5dbb07100b5c9fd74ae"><code>c8e4ca5</code></a> [maven-release-plugin] prepare release rest-assured-5.2.0</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/d72c03e0478d9b5de64aedba8ca87a5ad08c1e35"><code>d72c03e</code></a> [ci skip] Updated changelog with release date</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/0db04cb508568cede7914cb88e09cf8d25f6bddb"><code>0db04cb</code></a> Fixed imports</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/0cda32928e18acc88aceeac902227048f3378881"><code>0cda329</code></a> Fixed failing test</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/34c857a22276b823bb2805a1f04aad38d638c6cc"><code>34c857a</code></a> Moving sundr-maven-plugin to release profile since it doesn't seem to work on...</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/42d45528ddfad4e77a7aec4028fc6ce9ccdf388b"><code>42d4552</code></a> Cleanup</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/4c207e887971cbd894884374aca3c361bc43edb7"><code>4c207e8</code></a> Upgrading sundr-maven-plugin to 0.93.0</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/246ba8740607e23f00097e04526a019685f22627"><code>246ba87</code></a> Added csrf to RequestSpecBuilder.java</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/a6216b75f9f05e1cb2e5d4b747999af3bb663ac8"><code>a6216b7</code></a> Fixed some bugs and made some improvements to CSRF</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/50ad97a8f415c02f1f818521d243c0097a5075a2"><code>50ad97a</code></a> Upgraded kotlin module to using Kotlin 1.7.10 (previously 1.6.21 was used)</li>
<li>Additional commits viewable in <a href="https://github.com/rest-assured/rest-assured/compare/rest-assured-5.1.1...rest-assured-5.2.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.rest-assured:rest-assured&package-manager=maven&previous-version=5.1.1&new-version=5.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

10335: Allow users to configure backup store r=deepthidevaki a=deepthidevaki

## Description

This PR exposes the configuration for S3 backup store. 

As an example, S3 backup store can be configured as follows:
```
zeebe:
  broker:
    data:
      backup:
        store: s3
        s3 :
          bucketName: "bucket"
          endpoint: "endpoint"
          region: "region-1"
```
To disable backups, you can set `store` to `NONE`.

When adding support for new stores, the configuration can be extended by adding more store types and new configuration class for the new store. We don't have a concrete solution for supporting external implementations of backup stores. But the idea is that all external implementations will be identified as store type "external" and will have generic way of configuring them. This would be different from how we configure internally supported backup stores.

PS:- In this PR the configuration is exposed, but not yet used. This will be done in a follow up issue.

## Related issues

closes #10264 



10339: deps(go): bump github.com/testcontainers/testcontainers-go from 0.13.0 to 0.14.0 in /clients/go r=npepinpe a=dependabot[bot]

Bumps [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) from 0.13.0 to 0.14.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/a99f30793e285b89d898f6c1ad511cee1ad7d306"><code>a99f307</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/522">#522</a> from mdelapenya/contributing-guides</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/7d0afb71ee1074b8ffe2ed3bfd51958d508cc5db"><code>7d0afb7</code></a> docs: remove copy&amp;paste section</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/4926ee6f65057906fa0f6fb70899675363c85d50"><code>4926ee6</code></a> fix: update go deps for e2e module</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/698730add18e7ba16a7399f970b49a7ae6be5d43"><code>698730a</code></a> docs: improve contributing guides</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/cb9d7c8619a78237dd4ad6b6fa7693de7380698a"><code>cb9d7c8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/517">#517</a> from mdelapenya/copy-dir-to-container</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/ebb76b909ef28cb33702e9df5703c5ca247ac171"><code>ebb76b9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/515">#515</a> from testcontainers/dependabot/go_modules/github.com/...</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/d2eea8822a0c21ccd71b7340535ce80c26c553f3"><code>d2eea88</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/518">#518</a> from testcontainers/dependabot/go_modules/e2e/github....</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/09eb66e6c49481846afbe94dd32896382d9bdef0"><code>09eb66e</code></a> chore: typo</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/dde0e642d71ef7f630360fa66b78254f72ea53ab"><code>dde0e64</code></a> chore(deps): bump github.com/lib/pq from 1.10.6 to 1.10.7 in /e2e</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/96e3110a8a51aaac704f9e4b5a305e1dd8febd4f"><code>96e3110</code></a> chore: rename to file.go</li>
<li>Additional commits viewable in <a href="https://github.com/testcontainers/testcontainers-go/compare/v0.13.0...v0.14.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/testcontainers/testcontainers-go&package-manager=go_modules&previous-version=0.13.0&new-version=0.14.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

10340: deps(maven): bump software.amazon.awssdk:bom from 2.17.271 to 2.17.272 r=npepinpe a=dependabot[bot]

Bumps [software.amazon.awssdk:bom](https://github.com/aws/aws-sdk-java-v2) from 2.17.271 to 2.17.272.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/aws/aws-sdk-java-v2/blob/master/CHANGELOG.md">software.amazon.awssdk:bom's changelog</a>.</em></p>
<blockquote>
<h1><strong>2.17.272</strong> <strong>2022-09-12</strong></h1>
<h2><strong>Amazon Elastic Kubernetes Service</strong></h2>
<ul>
<li>
<h3>Features</h3>
<ul>
<li>Adding support for local Amazon EKS clusters on Outposts</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/aws/aws-sdk-java-v2/commit/3a468fca56335327984f8d690f66105da4e4372a"><code>3a468fc</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/aws/aws-sdk-java-v2/issues/2143">#2143</a> from aws/staging/8638e198-0d1c-4594-9b94-8eb4c69d388b</li>
<li><a href="https://github.com/aws/aws-sdk-java-v2/commit/1d9ccfebc4a9a2e8ae98c6ccfa699dceb70548e7"><code>1d9ccfe</code></a> Release 2.17.272. Updated CHANGELOG.md, README.md and all pom.xml.</li>
<li><a href="https://github.com/aws/aws-sdk-java-v2/commit/46e5749bd7e99924abffb904780a94c20e734608"><code>46e5749</code></a> Amazon Elastic Kubernetes Service Update: Adding support for local Amazon EKS...</li>
<li><a href="https://github.com/aws/aws-sdk-java-v2/commit/0ca7525d927be6d47e6fc063925bdc143a9e3ea6"><code>0ca7525</code></a> Update to next snapshot version: 2.17.272-SNAPSHOT</li>
<li>See full diff in <a href="https://github.com/aws/aws-sdk-java-v2/compare/2.17.271...2.17.272">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=software.amazon.awssdk:bom&package-manager=maven&previous-version=2.17.271&new-version=2.17.272)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

10341: deps(maven): bump aws-java-sdk-core from 1.12.300 to 1.12.301 r=npepinpe a=dependabot[bot]

Bumps [aws-java-sdk-core](https://github.com/aws/aws-sdk-java) from 1.12.300 to 1.12.301.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/aws/aws-sdk-java/blob/master/CHANGELOG.md">aws-java-sdk-core's changelog</a>.</em></p>
<blockquote>
<h1><strong>1.12.301</strong> <strong>2022-09-12</strong></h1>
<h2><strong>Amazon Elastic Kubernetes Service</strong></h2>
<ul>
<li>
<h3>Features</h3>
<ul>
<li>Adding support for local Amazon EKS clusters on Outposts</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/aws/aws-sdk-java/commit/5d25f861b7eb9e12d1f81cc63c3e42861ebddf39"><code>5d25f86</code></a> AWS SDK for Java 1.12.301</li>
<li><a href="https://github.com/aws/aws-sdk-java/commit/8ddd51b86c1fcc587b1b8f5db2393df302d0ca5f"><code>8ddd51b</code></a> Update GitHub version number to 1.12.301-SNAPSHOT</li>
<li>See full diff in <a href="https://github.com/aws/aws-sdk-java/compare/1.12.300...1.12.301">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.amazonaws:aws-java-sdk-core&package-manager=maven&previous-version=1.12.300&new-version=1.12.301)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

10342: deps(maven): bump snakeyaml from 1.30 to 1.32 r=npepinpe a=dependabot[bot]

Bumps [snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) from 1.30 to 1.32.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://bitbucket.org/snakeyaml/snakeyaml/commits/b8239ec552366e54dfe67077dee42c88d96dc6c5"><code>b8239ec</code></a> Add warning about untrusted data on landing page</li>
<li><a href="https://bitbucket.org/snakeyaml/snakeyaml/commits/28534206a328b4ac4446a948e596785536c65479"><code>2853420</code></a> Merge remote-tracking branch 'origin/master'</li>
<li><a href="https://bitbucket.org/snakeyaml/snakeyaml/commits/4b3d996848c988b4b2a5d753bdac1766083966a9"><code>4b3d996</code></a> Merged master into format-2</li>
<li><a href="https://bitbucket.org/snakeyaml/snakeyaml/commits/4081e0854e668608d0fa993a7811d3a5fb4222c3"><code>4081e08</code></a> Reformat with IntelliJ</li>
<li><a href="https://bitbucket.org/snakeyaml/snakeyaml/commits/0305c0420fb0cee466c3a4489cd006e7e848a944"><code>0305c04</code></a> Reformat tests with IntelliJ</li>
<li><a href="https://bitbucket.org/snakeyaml/snakeyaml/commits/fedd984dbc1f018ce75b1868791e9eea54204a9f"><code>fedd984</code></a> Reformat with IntelliJ</li>
<li><a href="https://bitbucket.org/snakeyaml/snakeyaml/commits/e5985fa40eafa19783fbc2161813ea43e0934898"><code>e5985fa</code></a> Reformat tests with IntelliJ</li>
<li><a href="https://bitbucket.org/snakeyaml/snakeyaml/commits/ebad791333afee13bfd48fd9cf1ff6dab5faa51a"><code>ebad791</code></a> Move formatting to Maven profile</li>
<li><a href="https://bitbucket.org/snakeyaml/snakeyaml/commits/72dfa9f1074abe2b8a6c8776bee4476b0aed02e3"><code>72dfa9f</code></a> Set the limit for incoming data to prevent a CVE report in NIST</li>
<li><a href="https://bitbucket.org/snakeyaml/snakeyaml/commits/5e56066540d72a4e2aae7d918f92406686076ceb"><code>5e56066</code></a> Improve error message for too big document</li>
<li>Additional commits viewable in <a href="https://bitbucket.org/snakeyaml/snakeyaml/branches/compare/snakeyaml-1.32..snakeyaml-1.30">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.yaml:snakeyaml&package-manager=maven&previous-version=1.30&new-version=1.32)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Deepthi Devaki Akkoorath <deepthidevaki@gmail.com>
zeebe-bors-camunda bot added a commit that referenced this issue Sep 13, 2022
10332: deps(maven): bump rest-assured from 5.1.1 to 5.2.0 r=npepinpe a=dependabot[bot]

Bumps [rest-assured](https://github.com/rest-assured/rest-assured) from 5.1.1 to 5.2.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/rest-assured/rest-assured/blob/master/changelog.txt">rest-assured's changelog</a>.</em></p>
<blockquote>
<h2>Changelog 5.2.0 (2022-09-09)</h2>
<ul>
<li>
<p>Improved FilterContext used in Filters by adding the method FilterContext#hasValue(name, object). This makes it easier to check if a value exists <em>and</em> is equal to the expect object.</p>
</li>
<li>
<p>Introducing a much improved CSRF (cross-site request forgery) support. For example:
given().
csrf(&quot;/users&quot;).
formParm(&quot;firstName&quot;, &quot;John&quot;).
formParm(&quot;lastName&quot;, &quot;Doe&quot;).
when().
post(&quot;/users&quot;).
then().
statusCode(200);</p>
<p>This will first make a GET request to /users (due to csrf(&quot;/users&quot;)) to get an HTML page that contains the CSRF token.
Rest Assured will then automatically try to find the input field that contains the CSRF token and include in the POST to /users.</p>
<p>Here's an example of what Rest Assured expects as a response for the GET request to /users:</p>
<!-- raw HTML omitted -->
</li>
<li>
<p>Fixed so that form authentication takes CSRF into account. The previous form authentication CSRF implementation didn't really work (sorry!).
Now you can combine csrf with form authentication and it actually works as expected! Note that for requests other than GET or HEAD,
you need to specify <em>both</em> form authentication <em>and</em> csrf, e.g.</p>
<p>given().
csrf(&quot;/users&quot;).
formParm(&quot;firstName&quot;, &quot;John&quot;).
formParm(&quot;lastName&quot;, &quot;Doe&quot;).</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/rest-assured/rest-assured/commit/c8e4ca53e4e0bc3ee761b5dbb07100b5c9fd74ae"><code>c8e4ca5</code></a> [maven-release-plugin] prepare release rest-assured-5.2.0</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/d72c03e0478d9b5de64aedba8ca87a5ad08c1e35"><code>d72c03e</code></a> [ci skip] Updated changelog with release date</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/0db04cb508568cede7914cb88e09cf8d25f6bddb"><code>0db04cb</code></a> Fixed imports</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/0cda32928e18acc88aceeac902227048f3378881"><code>0cda329</code></a> Fixed failing test</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/34c857a22276b823bb2805a1f04aad38d638c6cc"><code>34c857a</code></a> Moving sundr-maven-plugin to release profile since it doesn't seem to work on...</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/42d45528ddfad4e77a7aec4028fc6ce9ccdf388b"><code>42d4552</code></a> Cleanup</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/4c207e887971cbd894884374aca3c361bc43edb7"><code>4c207e8</code></a> Upgrading sundr-maven-plugin to 0.93.0</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/246ba8740607e23f00097e04526a019685f22627"><code>246ba87</code></a> Added csrf to RequestSpecBuilder.java</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/a6216b75f9f05e1cb2e5d4b747999af3bb663ac8"><code>a6216b7</code></a> Fixed some bugs and made some improvements to CSRF</li>
<li><a href="https://github.com/rest-assured/rest-assured/commit/50ad97a8f415c02f1f818521d243c0097a5075a2"><code>50ad97a</code></a> Upgraded kotlin module to using Kotlin 1.7.10 (previously 1.6.21 was used)</li>
<li>Additional commits viewable in <a href="https://github.com/rest-assured/rest-assured/compare/rest-assured-5.1.1...rest-assured-5.2.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.rest-assured:rest-assured&package-manager=maven&previous-version=5.1.1&new-version=5.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

10335: Allow users to configure backup store r=deepthidevaki a=deepthidevaki

## Description

This PR exposes the configuration for S3 backup store. 

As an example, S3 backup store can be configured as follows:
```
zeebe:
  broker:
    data:
      backup:
        store: s3
        s3 :
          bucketName: "bucket"
          endpoint: "endpoint"
          region: "region-1"
```
To disable backups, you can set `store` to `NONE`.

When adding support for new stores, the configuration can be extended by adding more store types and new configuration class for the new store. We don't have a concrete solution for supporting external implementations of backup stores. But the idea is that all external implementations will be identified as store type "external" and will have generic way of configuring them. This would be different from how we configure internally supported backup stores.

PS:- In this PR the configuration is exposed, but not yet used. This will be done in a follow up issue.

## Related issues

closes #10264 



10339: deps(go): bump github.com/testcontainers/testcontainers-go from 0.13.0 to 0.14.0 in /clients/go r=npepinpe a=dependabot[bot]

Bumps [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) from 0.13.0 to 0.14.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/a99f30793e285b89d898f6c1ad511cee1ad7d306"><code>a99f307</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/522">#522</a> from mdelapenya/contributing-guides</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/7d0afb71ee1074b8ffe2ed3bfd51958d508cc5db"><code>7d0afb7</code></a> docs: remove copy&amp;paste section</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/4926ee6f65057906fa0f6fb70899675363c85d50"><code>4926ee6</code></a> fix: update go deps for e2e module</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/698730add18e7ba16a7399f970b49a7ae6be5d43"><code>698730a</code></a> docs: improve contributing guides</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/cb9d7c8619a78237dd4ad6b6fa7693de7380698a"><code>cb9d7c8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/517">#517</a> from mdelapenya/copy-dir-to-container</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/ebb76b909ef28cb33702e9df5703c5ca247ac171"><code>ebb76b9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/515">#515</a> from testcontainers/dependabot/go_modules/github.com/...</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/d2eea8822a0c21ccd71b7340535ce80c26c553f3"><code>d2eea88</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/518">#518</a> from testcontainers/dependabot/go_modules/e2e/github....</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/09eb66e6c49481846afbe94dd32896382d9bdef0"><code>09eb66e</code></a> chore: typo</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/dde0e642d71ef7f630360fa66b78254f72ea53ab"><code>dde0e64</code></a> chore(deps): bump github.com/lib/pq from 1.10.6 to 1.10.7 in /e2e</li>
<li><a href="https://github.com/testcontainers/testcontainers-go/commit/96e3110a8a51aaac704f9e4b5a305e1dd8febd4f"><code>96e3110</code></a> chore: rename to file.go</li>
<li>Additional commits viewable in <a href="https://github.com/testcontainers/testcontainers-go/compare/v0.13.0...v0.14.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/testcontainers/testcontainers-go&package-manager=go_modules&previous-version=0.13.0&new-version=0.14.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Deepthi Devaki Akkoorath <deepthidevaki@gmail.com>
@Zelldon Zelldon added the version:8.1.0 Marks an issue as being completely or in parts released in 8.1.0 label Oct 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
version:8.1.0 Marks an issue as being completely or in parts released in 8.1.0
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants