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

docs(kork): add release notes for artifact store change #356

Merged
merged 4 commits into from
Jul 10, 2023
Merged
Changes from 3 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
23 changes: 23 additions & 0 deletions content/en/docs/releases/next-release-preview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,26 @@ resource:
### Front50

https://github.com/spinnaker/front50/pull/1275 adds the `sql.healthIntervalMillis` property that controls the interval to refresh information that the /health endpoint provides. It defaults to 30 seconds, the value before it was configurable.

### Artifact Store

https://github.com/spinnaker/kork/pull/1069 adds support for artifact storage with AWS S3. This compresses `embedded/base64` types to `remote/base64` reducing the artifact size in the context. The size of the context had a reduction of 70% for larger pipelines, and 30% for smaller pipelines.
dbyron-sf marked this conversation as resolved.
Show resolved Hide resolved

Sample configuration to enable artifact storage
```yaml
# spinnaker-local.yml since clouddriver, rosco, and orca all need this configuration
artifact-store:
enabled: true
s3:
enabled: true
region: us-west-2
bucket: some-artifact-store-bucket
```

Other related PRs are:
https://github.com/spinnaker/clouddriver/pull/5976
https://github.com/spinnaker/deck/pull/10011
https://github.com/spinnaker/orca/pull/4481
dbyron-sf marked this conversation as resolved.
Show resolved Hide resolved
https://github.com/spinnaker/rosco/pull/998

For more information please see [the README](https://github.com/spinnaker/kork/blob/18d1c6e88597a9147851b37412ea38b3fd7032d5/kork-artifacts/src/main/java/com/netflix/spinnaker/kork/artifacts/README.md).