-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #364 from aysylu/version
Documentation on Kritis versioning
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Kritis Versioning Explained: API vs Server | ||
|
||
Kritis uses a mix of [Kubernetes API](https://kubernetes.io/docs/concepts/overview/kubernetes-api/#api-versioning) and [semantic](https://semver.org/) versioning. This document clarifies the rationale behind this mix in versioning approaches. | ||
|
||
## API | ||
|
||
Kritis follows Kubernetes versioning scheme, to be consistent with the approach | ||
used by the larger Kubernetes community. | ||
|
||
## Server | ||
|
||
Kritis server uses semantic versioning. The server currently supports v1beta1 | ||
version of the Kritis API. This approach allows us to communicate to the open | ||
source community the production readiness of Kritis, as well as differentiate | ||
between bug fixes, minor and major feature releases. |