Search in sources :

Example 1 with V1Secret

use of io.kubernetes.client.openapi.models.V1Secret in project pravega by pravega.

the class AbstractService method registerTLSSecret.

private CompletableFuture<V1Secret> registerTLSSecret() {
    if (!Utils.TLS_AND_AUTH_ENABLED) {
        return CompletableFuture.completedFuture(null);
    }
    try {
        V1Secret secret = getTLSSecret();
        V1Secret existingSecret = Futures.getThrowingException(k8sClient.getSecret(SECRET_NAME_USED_FOR_TLS, NAMESPACE));
        if (existingSecret != null) {
            Futures.getThrowingException(k8sClient.deleteSecret(SECRET_NAME_USED_FOR_TLS, NAMESPACE));
        }
        return k8sClient.createSecret(NAMESPACE, secret);
    } catch (Exception e) {
        log.error("Could not register secret: ", e);
    }
    return CompletableFuture.completedFuture(null);
}
Also used : V1Secret(io.kubernetes.client.openapi.models.V1Secret) IOException(java.io.IOException)

Example 2 with V1Secret

use of io.kubernetes.client.openapi.models.V1Secret in project java by kubernetes-client.

the class CoreV1Api method patchNamespacedSecretWithHttpInfo.

/**
 * partially update the specified Secret
 *
 * @param name name of the Secret (required)
 * @param namespace object name and auth scope, such as for teams and projects (required)
 * @param body (required)
 * @param pretty If &#39;true&#39;, then the output is pretty printed. (optional)
 * @param dryRun When present, indicates that modifications should not be persisted. An invalid or
 *     unrecognized dryRun directive will result in an error response and no further processing of
 *     the request. Valid values are: - All: all dry run stages will be processed (optional)
 * @param fieldManager fieldManager is a name associated with the actor or entity that is making
 *     these changes. The value must be less than or 128 characters long, and only contain
 *     printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is
 *     required for apply requests (application/apply-patch) but optional for non-apply patch
 *     types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
 * @param fieldValidation fieldValidation determines how the server should respond to
 *     unknown/duplicate fields in the object in the request. Introduced as alpha in 1.23, older
 *     servers or servers with the &#x60;ServerSideFieldValidation&#x60; feature disabled will
 *     discard valid values specified in this param and not perform any server side field
 *     validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds
 *     with a warning for each unknown/duplicate field, but successfully serves the request. -
 *     Strict: fails the request on unknown/duplicate fields. (optional)
 * @param force Force is going to \&quot;force\&quot; Apply requests. It means user will
 *     re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply
 *     patch requests. (optional)
 * @return ApiResponse&lt;V1Secret&gt;
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the
 *     response body
 * @http.response.details
 *     <table summary="Response Details" border="1">
 * <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
 * <tr><td> 200 </td><td> OK </td><td>  -  </td></tr>
 * <tr><td> 201 </td><td> Created </td><td>  -  </td></tr>
 * <tr><td> 401 </td><td> Unauthorized </td><td>  -  </td></tr>
 * </table>
 */
public ApiResponse<V1Secret> patchNamespacedSecretWithHttpInfo(String name, String namespace, V1Patch body, String pretty, String dryRun, String fieldManager, String fieldValidation, Boolean force) throws ApiException {
    okhttp3.Call localVarCall = patchNamespacedSecretValidateBeforeCall(name, namespace, body, pretty, dryRun, fieldManager, fieldValidation, force, null);
    Type localVarReturnType = new TypeToken<V1Secret>() {
    }.getType();
    return localVarApiClient.execute(localVarCall, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1Secret(io.kubernetes.client.openapi.models.V1Secret)

Example 3 with V1Secret

use of io.kubernetes.client.openapi.models.V1Secret in project java by kubernetes-client.

the class YamlTest method testLoadBytes.

@Test
public void testLoadBytes() {
    try {
        String strInput = "data:\n  hello: aGVsbG8=";
        V1Secret secret = Yaml.loadAs(strInput, V1Secret.class);
        assertEquals("Incorrect value loaded for Base64 encoded secret", "hello", new String(secret.getData().get("hello"), UTF_8));
    } catch (Exception ex) {
        assertNull("Unexpected exception: " + ex.toString(), ex);
    }
}
Also used : V1Secret(io.kubernetes.client.openapi.models.V1Secret) IOException(java.io.IOException) Test(org.junit.Test)

Example 4 with V1Secret

use of io.kubernetes.client.openapi.models.V1Secret in project java by kubernetes-client.

the class YamlTest method testLoadAllFile.

@Test
public void testLoadAllFile() throws Exception {
    List<Object> list = Yaml.loadAll(new File(TEST_YAML_FILE_PATH));
    List<KubernetesType> k8ObjectList = new ArrayList<>();
    for (Object object : list) {
        String type = object.getClass().getSimpleName();
        if (type.equals("V1Service")) {
            V1Service svc = (V1Service) object;
            assertEquals("v1", svc.getApiVersion());
            assertEquals("Service", svc.getKind());
            assertEquals("mock", svc.getMetadata().getName());
            k8ObjectList.add(svc);
        } else if (type.equals("V1Deployment")) {
            V1Deployment deploy = (V1Deployment) object;
            assertEquals("apps/v1", deploy.getApiVersion());
            assertEquals("Deployment", deploy.getKind());
            assertEquals("helloworld", deploy.getMetadata().getName());
            k8ObjectList.add(deploy);
        } else if (type.equals("V1Secret")) {
            V1Secret secret = (V1Secret) object;
            assertEquals("Secret", secret.getKind());
            assertEquals("secret", secret.getMetadata().getName());
            assertEquals("Opaque", secret.getType());
            assertEquals("hello", new String(secret.getData().get("secret-data"), UTF_8));
            k8ObjectList.add(secret);
        } else {
            throw new Exception("some thing wrong happened");
        }
    }
    String result = Yaml.dumpAll(k8ObjectList.iterator());
    String expected = Resources.toString(EXPECTED_YAML_FILE, UTF_8).replace("\r\n", "\n");
    assertThat(result, equalTo(expected));
}
Also used : V1Deployment(io.kubernetes.client.openapi.models.V1Deployment) KubernetesType(io.kubernetes.client.common.KubernetesType) ArrayList(java.util.ArrayList) V1Service(io.kubernetes.client.openapi.models.V1Service) File(java.io.File) V1Secret(io.kubernetes.client.openapi.models.V1Secret) IOException(java.io.IOException) Test(org.junit.Test)

Example 5 with V1Secret

use of io.kubernetes.client.openapi.models.V1Secret in project java by kubernetes-client.

the class CoreV1Api method readNamespacedSecretAsync.

/**
 * (asynchronously) read the specified Secret
 *
 * @param name name of the Secret (required)
 * @param namespace object name and auth scope, such as for teams and projects (required)
 * @param pretty If &#39;true&#39;, then the output is pretty printed. (optional)
 * @param _callback The callback to be executed when the API call finishes
 * @return The request call
 * @throws ApiException If fail to process the API call, e.g. serializing the request body object
 * @http.response.details
 *     <table summary="Response Details" border="1">
 * <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
 * <tr><td> 200 </td><td> OK </td><td>  -  </td></tr>
 * <tr><td> 401 </td><td> Unauthorized </td><td>  -  </td></tr>
 * </table>
 */
public okhttp3.Call readNamespacedSecretAsync(String name, String namespace, String pretty, final ApiCallback<V1Secret> _callback) throws ApiException {
    okhttp3.Call localVarCall = readNamespacedSecretValidateBeforeCall(name, namespace, pretty, _callback);
    Type localVarReturnType = new TypeToken<V1Secret>() {
    }.getType();
    localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
    return localVarCall;
}
Also used : Type(java.lang.reflect.Type) V1Secret(io.kubernetes.client.openapi.models.V1Secret)

Aggregations

V1Secret (io.kubernetes.client.openapi.models.V1Secret)14 Type (java.lang.reflect.Type)8 IOException (java.io.IOException)3 CoreV1Api (io.kubernetes.client.openapi.apis.CoreV1Api)2 SneakyThrows (lombok.SneakyThrows)2 Test (org.junit.Test)2 KubernetesType (io.kubernetes.client.common.KubernetesType)1 V1Deployment (io.kubernetes.client.openapi.models.V1Deployment)1 V1Service (io.kubernetes.client.openapi.models.V1Service)1 Utils (io.pravega.test.system.framework.Utils)1 File (java.io.File)1 InputStream (java.io.InputStream)1 ArrayList (java.util.ArrayList)1 IOUtils (org.apache.commons.io.IOUtils)1