forked from fabric8io/kubernetes-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix fabric8io#1550: MutatingWebhookConfigurationOperationsImpl should…
… be a NonNamespaceOperation
- Loading branch information
1 parent
141668a
commit c9b11d7
Showing
3 changed files
with
109 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
53 changes: 53 additions & 0 deletions
53
...io/fabric8/kubernetes/client/dsl/internal/MutatingWebhookConfigurationOperationsImpl.java
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,53 @@ | ||
/** | ||
* Copyright (C) 2015 Red Hat, Inc. | ||
* <p> | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.fabric8.kubernetes.client.dsl.internal; | ||
|
||
import io.fabric8.kubernetes.api.model.admissionregistration.DoneableMutatingWebhookConfiguration; | ||
import io.fabric8.kubernetes.api.model.admissionregistration.MutatingWebhookConfiguration; | ||
import io.fabric8.kubernetes.api.model.admissionregistration.MutatingWebhookConfigurationList; | ||
import io.fabric8.kubernetes.client.Config; | ||
import io.fabric8.kubernetes.client.dsl.Resource; | ||
import io.fabric8.kubernetes.client.dsl.base.HasMetadataOperation; | ||
import io.fabric8.kubernetes.client.dsl.base.OperationContext; | ||
import okhttp3.OkHttpClient; | ||
|
||
|
||
public class MutatingWebhookConfigurationOperationsImpl extends HasMetadataOperation<MutatingWebhookConfiguration, MutatingWebhookConfigurationList, DoneableMutatingWebhookConfiguration, Resource<MutatingWebhookConfiguration, DoneableMutatingWebhookConfiguration>> { | ||
|
||
public MutatingWebhookConfigurationOperationsImpl(OkHttpClient client, Config config) { | ||
this(new OperationContext().withOkhttpClient(client).withConfig(config)); | ||
} | ||
|
||
public MutatingWebhookConfigurationOperationsImpl(OperationContext context) { | ||
super(context.withApiGroupName("admissionregistration.k8s.io") | ||
.withApiGroupVersion("v1beta1") | ||
.withPlural("mutatingwebhookconfigurations")); | ||
this.type = MutatingWebhookConfiguration.class; | ||
this.listType = MutatingWebhookConfigurationList.class; | ||
this.doneableType = DoneableMutatingWebhookConfiguration.class; | ||
} | ||
|
||
@Override | ||
public MutatingWebhookConfigurationOperationsImpl newInstance(OperationContext context) { | ||
return new MutatingWebhookConfigurationOperationsImpl(context); | ||
} | ||
|
||
@Override | ||
public boolean isResourceNamespaced() { | ||
return false; | ||
} | ||
} | ||
|
55 changes: 55 additions & 0 deletions
55
...sts/src/test/java/io/fabric8/kubernetes/client/mock/MutatingWebhookConfigurationTest.java
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,55 @@ | ||
/** | ||
* Copyright (C) 2015 Red Hat, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.fabric8.kubernetes.client.mock; | ||
|
||
import io.fabric8.kubernetes.api.model.HasMetadata; | ||
import io.fabric8.kubernetes.api.model.admissionregistration.MutatingWebhookConfiguration; | ||
import io.fabric8.kubernetes.api.model.admissionregistration.MutatingWebhookConfigurationBuilder; | ||
import io.fabric8.kubernetes.api.model.admissionregistration.WebhookBuilder; | ||
import io.fabric8.kubernetes.client.KubernetesClient; | ||
import io.fabric8.kubernetes.client.server.mock.KubernetesServer; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
public class MutatingWebhookConfigurationTest { | ||
@Rule | ||
public KubernetesServer server = new KubernetesServer(); | ||
|
||
@Test | ||
public void create() { | ||
MutatingWebhookConfiguration mutatingWebhookConfiguration = new MutatingWebhookConfigurationBuilder() | ||
.withNewMetadata().withName("mutatingWebhookConfiguration1").endMetadata() | ||
.addToWebhooks(new WebhookBuilder() | ||
.withName("webhook1") | ||
.withNewClientConfig() | ||
.withNewService() | ||
.withName("svc1") | ||
.withNamespace("test") | ||
.withPath("/mutate") | ||
.endService() | ||
.endClientConfig() | ||
.build()) | ||
.build(); | ||
|
||
server.expect().post().withPath("/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations").andReturn(201, mutatingWebhookConfiguration).once(); | ||
|
||
KubernetesClient client = server.getClient(); | ||
HasMetadata response = client.resource(mutatingWebhookConfiguration).createOrReplace(); | ||
assertEquals(mutatingWebhookConfiguration, response); | ||
} | ||
} |