This repository was archived by the owner on Dec 21, 2023. It is now read-only.
WIP: Check K8S version to be < 1.19 before installing ingress resource#180
Closed
WIP: Check K8S version to be < 1.19 before installing ingress resource#180
Conversation
Signed-off-by: Florian Bacher <florian.bacher@dynatrace.com>
Release 0.8.1
Signed-off-by: Christian Kreuzberger <christian.kreuzberger@dynatrace.com>
prepare release 0.8.2
Release 0.8.2
Signed-off-by: Christian Kreuzberger <christian.kreuzberger@dynatrace.com>
…diation Signed-off-by: Christian Kreuzberger <christian.kreuzberger@dynatrace.com>
Signed-off-by: Christian Kreuzberger <christian.kreuzberger@dynatrace.com>
…script #157 Improve output of configure-istio.sh script
Signed-off-by: Christian Kreuzberger <christian.kreuzberger@dynatrace.com>
#165 Added SLO file for dynatrace self healing example
Signed-off-by: Florian Bacher <florian.bacher@dynatrace.com>
Prepare release 0.8.3
Signed-off-by: Christian Kreuzberger <christian.kreuzberger@dynatrace.com>
Increase wait time for tutorial
Signed-off-by: TannerGabriel <gabrieltanner.code@gmail.com>
Update istio ingress API version
Signed-off-by: Florian Bacher <florian.bacher@dynatrace.com>
Signed-off-by: Florian Bacher <florian.bacher@dynatrace.com>
Signed-off-by: Florian Bacher <florian.bacher@dynatrace.com>
Prepare release 0.8.4
…ith v1 k8s networking api Signed-off-by: warber <bernd.warmuth@dynatrace.com>
…ew-api-version updated ingress manifest in configure-istio.sh
Signed-off-by: warber <bernd.warmuth@dynatrace.com>
6 tasks
Member
|
outdated |
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR checks the Kubernetes minor version before installing the K8S ingress resource for istio.
If it is <19, it will install the ingress using api version
networking.k8s.io/v1beta1(asv1is not supported for these versions) otherwise it will usenetworking.k8s.io/v1(asv1beta1 will be removed from beginning with1.22`)The solution is not optimal:
jq(jsonpathseems not to be supported bykubectl version😞 )Signed-off-by: warber bernd.warmuth@dynatrace.com