-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ryan Miller
committed
Nov 21, 2019
1 parent
2c76f53
commit 2edec61
Showing
2 changed files
with
50 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Alpha Releases | ||
|
||
| DISCLAIMER | | ||
| --- | | ||
| We recommend testing alpha releases on non-production clusters. These releases are generated continuously from contributions to this repo and may not be fully tested. | | ||
|
||
|
||
As part of our [Travis CI script](../../ci/build.sh), we release an alpha Docker image as well as an alpha Helm chart release. | ||
|
||
## Versioning | ||
Release Type | Version Scheme | Example | ||
-------- | ----- | ----- | ||
Major Release | `major.0.0` | `2.0.0` | ||
Minor Release | `major.minor.0` | `0.11.0` | ||
Alpha Release | `major.minor.patch-alpha` | `0.11.3-alpha` | ||
|
||
You can find a list of all releases in the Github repo's [Releases](https://github.com/SumoLogic/sumologic-kubernetes-collection/releases) section. You can find a list of all Docker images in the [Docker tags](https://hub.docker.com/repository/docker/sumologic/kubernetes-fluentd/tags) section. | ||
|
||
## Using an alpha release | ||
|
||
### Helm installation | ||
|
||
Follow the [Helm installation guide](./Installation_with_Helm.md), but override both the Helm chart version and the Docker image version. | ||
|
||
``` | ||
helm repo update | ||
helm install sumologic/sumologic --name collection --namespace sumologic ... --version=0.11.3-alpha --set image.tag="0.11.3-alpha" | ||
``` | ||
|
||
### Non-helm installation | ||
|
||
Follow the [non-Helm installation guide](./Non_Helm_Installation.md), but modify the .yaml template to use an alpha Docker image for both log and event deployments, e.g. | ||
|
||
``` | ||
- name: fluentd | ||
image: sumologic/kubernetes-fluentd:0.11.3-alpha | ||
``` | ||
|
||
``` | ||
- name: fluentd-events | ||
image: sumologic/kubernetes-fluentd:0.11.3-alpha | ||
``` |