nextflow.k8s.model.PodMountSecret.groovy Maven / Gradle / Ivy
/*
* Copyright 2013-2024, Seqera Labs
*
* 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 nextflow.k8s.model
import java.nio.file.Paths
import groovy.transform.CompileStatic
import groovy.transform.EqualsAndHashCode
import groovy.transform.ToString
/**
* Model a K8s Secret file mount
*
* https://kubernetes.io/docs/concepts/configuration/secret/
*
* @author Paolo Di Tommaso
*/
@CompileStatic
@ToString(includeNames = true)
@EqualsAndHashCode
class PodMountSecret {
String mountPath
String fileName
String secretName
String secretKey
PodMountSecret(String secret, String mount) {
assert secret
assert mount
final path = Paths.get(mount)
final tokens = secret.tokenize('/')
secretName = tokens[0].trim()
secretKey = tokens.size()>1 ? tokens[1].trim() : null
if( secretKey ) {
mountPath = path.parent.toString()
fileName = path.fileName.toString()
}
else {
mountPath = path.toString()
}
}
PodMountSecret(Map entry) {
this(entry.secret as String, entry.mountPath as String)
}
}