This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 8f7e24f9f0a0f7cb4ebb30ae056a10fd06e86397
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Mon Feb 17 19:34:13 2020 +0100

    Upgrade Kubernetes client and model to version 4.8.0
---
 .../kubernetes/producer/KubernetesHPAProducerTest.java         | 10 +++++-----
 parent/pom.xml                                                 |  4 ++--
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git 
a/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/producer/KubernetesHPAProducerTest.java
 
b/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/producer/KubernetesHPAProducerTest.java
index 9c6203f..23950c5 100644
--- 
a/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/producer/KubernetesHPAProducerTest.java
+++ 
b/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/producer/KubernetesHPAProducerTest.java
@@ -47,7 +47,7 @@ public class KubernetesHPAProducerTest extends 
KubernetesTestSupport {
 
     @Test
     public void listTest() throws Exception {
-        
server.expect().withPath("/apis/autoscaling/v2beta1/namespaces/test/horizontalpodautoscalers")
+        
server.expect().withPath("/apis/autoscaling/v2beta2/namespaces/test/horizontalpodautoscalers")
             .andReturn(200, new 
HorizontalPodAutoscalerListBuilder().addNewItem().and().addNewItem().and().addNewItem().and().build()).once();
         List<HorizontalPodAutoscaler> result = 
template.requestBody("direct:list", "", List.class);
 
@@ -56,7 +56,7 @@ public class KubernetesHPAProducerTest extends 
KubernetesTestSupport {
 
     @Test
     public void listByLabelsTest() throws Exception {
-        
server.expect().withPath("/apis/autoscaling/v2beta1/namespaces/test/horizontalpodautoscalers?labelSelector="
 + toUrlEncoded("key1=value1,key2=value2"))
+        
server.expect().withPath("/apis/autoscaling/v2beta2/namespaces/test/horizontalpodautoscalers?labelSelector="
 + toUrlEncoded("key1=value1,key2=value2"))
             .andReturn(200, new 
PodListBuilder().addNewItem().and().addNewItem().and().addNewItem().and().build()).once();
         Exchange ex = template.request("direct:listByLabels", new Processor() {
 
@@ -79,8 +79,8 @@ public class KubernetesHPAProducerTest extends 
KubernetesTestSupport {
         HorizontalPodAutoscaler hpa1 = new 
HorizontalPodAutoscalerBuilder().withNewMetadata().withName("hpa1").withNamespace("test").and().build();
         HorizontalPodAutoscaler hpa2 = new 
HorizontalPodAutoscalerBuilder().withNewMetadata().withName("hpa2").withNamespace("ns1").and().build();
 
-        
server.expect().withPath("/apis/autoscaling/v2beta1/namespaces/test/horizontalpodautoscalers/hpa1").andReturn(200,
 hpa1).once();
-        
server.expect().withPath("/apis/autoscaling/v2beta1/namespaces/ns1/horizontalpodautoscalers/hpa2").andReturn(200,
 hpa2).once();
+        
server.expect().withPath("/apis/autoscaling/v2beta2/namespaces/test/horizontalpodautoscalers/hpa1").andReturn(200,
 hpa1).once();
+        
server.expect().withPath("/apis/autoscaling/v2beta2/namespaces/ns1/horizontalpodautoscalers/hpa2").andReturn(200,
 hpa2).once();
         Exchange ex = template.request("direct:getHPA", new Processor() {
 
             @Override
@@ -98,7 +98,7 @@ public class KubernetesHPAProducerTest extends 
KubernetesTestSupport {
     @Test
     public void deleteHPATest() throws Exception {
         HorizontalPodAutoscaler hpa1 = new 
HorizontalPodAutoscalerBuilder().withNewMetadata().withName("hpa1").withNamespace("test").and().build();
-        
server.expect().withPath("/apis/autoscaling/v2beta1/namespaces/test/horizontalpodautoscalers/hpa1").andReturn(200,
 hpa1).once();
+        
server.expect().withPath("/apis/autoscaling/v2beta2/namespaces/test/horizontalpodautoscalers/hpa1").andReturn(200,
 hpa1).once();
 
         Exchange ex = template.request("direct:deleteHPA", new Processor() {
 
diff --git a/parent/pom.xml b/parent/pom.xml
index c46b20b..babe690 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -407,8 +407,8 @@
         <kafka-bundle-version>2.4.0_1</kafka-bundle-version>
         <karaf4-version>4.2.8</karaf4-version>
         <kie-version>7.32.0.Final</kie-version>
-        <kubernetes-client-version>4.7.1</kubernetes-client-version>
-        <kubernetes-model-version>4.7.1</kubernetes-model-version>
+        <kubernetes-client-version>4.8.0</kubernetes-client-version>
+        <kubernetes-model-version>4.8.0</kubernetes-model-version>
         <kudu-version>1.10.0</kudu-version>
         <kxml2-bundle-version>2.3.0_3</kxml2-bundle-version>
         <leveldbjni-version>1.8</leveldbjni-version>

Reply via email to