blob: d16002a6fd845041702ad81f040a05cb9ac83a8a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.camel.k.listener;
import org.apache.camel.k.Constants;
import org.apache.camel.k.Runtime;
import org.apache.camel.k.support.KubernetesPropertiesFunction;
import org.apache.camel.spi.PropertiesComponent;
public class PropertiesFunctionsConfigurer extends AbstractPhaseListener {
public PropertiesFunctionsConfigurer() {
super(Runtime.Phase.Starting);
}
@Override
protected void accept(Runtime runtime) {
//
// Register properties functions to resolve k8s secrets or config maps like:
//
// {{secret:name/key}}
// {{configmap:name/key}}
//
PropertiesComponent pc = runtime.getCamelContext().getPropertiesComponent();
if (pc instanceof org.apache.camel.component.properties.PropertiesComponent) {
//
// ConfigMap
//
String cmPath = System.getProperty(Constants.PROPERTY_CAMEL_K_MOUNT_PATH_CONFIGMAPS);
if (cmPath == null) {
cmPath = System.getenv(Constants.ENV_CAMEL_K_MOUNT_PATH_CONFIGMAPS);
}
((org.apache.camel.component.properties.PropertiesComponent)pc).addFunction(
new KubernetesPropertiesFunction(cmPath, "configmap")
);
//
// Secret
//
String secretPath = System.getProperty(Constants.PROPERTY_CAMEL_K_MOUNT_PATH_SECRETS);
if (secretPath == null) {
secretPath = System.getenv(Constants.ENV_CAMEL_K_MOUNT_PATH_SECRETS);
}
((org.apache.camel.component.properties.PropertiesComponent)pc).addFunction(
new KubernetesPropertiesFunction(secretPath, "secret")
);
}
}
}