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

io.strimzi.plugin.security.profiles.PodSecurityProviderContext Maven / Gradle / Ivy

There is a newer version: 0.44.0
Show newest version
/*
 * Copyright Strimzi authors.
 * License: Apache License 2.0 (see the file LICENSE or http://apache.org/licenses/LICENSE-2.0.html).
 */
package io.strimzi.plugin.security.profiles;

import io.fabric8.kubernetes.api.model.PodSecurityContext;
import io.strimzi.api.kafka.model.storage.Storage;

/**
 * Interface which provides the context which can be used to generate the Pod security context
 */
public interface PodSecurityProviderContext {
    /**
     * Returns the storage used by the Pod. If no storage is used, it returns null.
     *
     * @return  Pod storage configuration
     */
    Storage storage();

    /**
     * Returns the Pod security context configured by the user in the corresponding `template` section
     *
     * @return  User-supplied Pod security context
     */
    PodSecurityContext userSuppliedSecurityContext();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy