All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.radanalytics.operator.resource.LabelsHelper Maven / Gradle / Ivy

There is a newer version: 0.6.15
Show newest version
/*
 * Copyright 2018
 * License: Apache License 2.0 (see the file LICENSE or http://apache.org/licenses/LICENSE-2.0.html).
 */
package io.radanalytics.operator.resource;

import io.fabric8.kubernetes.api.model.HasMetadata;

import java.util.Collections;
import java.util.Map;
import java.util.Optional;

/**
 * A helper for parsing the {@code metadata.labels} section inside the K8s resource
 */
public class LabelsHelper {

    /**
     * The kind of a ConfigMap:
     * 
    *
  • {@code radanalytics.io/kind=cluster} * identifies a ConfigMap that is intended to be consumed by * the cluster operator.
  • *
  • {@code radanalytics.io/kind=app} * identifies a ConfigMap that is intended to be consumed * by the app operator.
  • *
  • {@code radanalytics.io/kind=notebook} * identifies a ConfigMap that is intended to be consumed * by the notebook operator.
  • *
*/ public static final String OPERATOR_KIND_LABEL = "kind"; public static final String OPERATOR_SEVICE_TYPE_LABEL = "service"; public static final String OPERATOR_RC_TYPE_LABEL = "rcType"; public static final String OPERATOR_POD_TYPE_LABEL = "podType"; public static final String OPERATOR_DEPLOYMENT_LABEL = "deployment"; public static final Optional getKind(HasMetadata resource, String prefix) { return Optional.ofNullable(resource) .map(r -> r.getMetadata()) .map(m -> m.getLabels()) .map(l -> l.get(prefix + OPERATOR_KIND_LABEL)); } public static Map forKind(String kind, String prefix) { return Collections.singletonMap(prefix + OPERATOR_KIND_LABEL, kind); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy