com.yahoo.vespa.model.container.IdentityProvider Maven / Gradle / Ivy
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.container;
import com.yahoo.config.provision.AthenzDomain;
import com.yahoo.config.provision.AthenzService;
import com.yahoo.config.provision.HostName;
import com.yahoo.config.provision.SystemName;
import com.yahoo.config.provision.Zone;
import com.yahoo.container.bundle.BundleInstantiationSpecification;
import com.yahoo.container.core.identity.IdentityConfig;
import com.yahoo.osgi.provider.model.ComponentModel;
import com.yahoo.vespa.model.container.component.SimpleComponent;
import java.net.URI;
/**
* @author mortent
*/
public class IdentityProvider extends SimpleComponent implements IdentityConfig.Producer {
public static final String CLASS = "com.yahoo.vespa.athenz.identityprovider.client.AthenzIdentityProviderProvider";
public static final String BUNDLE = "vespa-athenz";
private final AthenzDomain domain;
private final AthenzService service;
private final HostName loadBalancerName;
private final URI ztsUrl;
private final String athenzDnsSuffix;
private final Zone zone;
public IdentityProvider(AthenzDomain domain,
AthenzService service,
HostName loadBalancerName,
URI ztsUrl,
String athenzDnsSuffix,
Zone zone) {
super(new ComponentModel(BundleInstantiationSpecification.fromStrings(CLASS, CLASS, BUNDLE)));
this.domain = domain;
this.service = service;
this.loadBalancerName = loadBalancerName;
this.ztsUrl = ztsUrl;
this.athenzDnsSuffix = athenzDnsSuffix;
this.zone = zone;
}
@Override
public void getConfig(IdentityConfig.Builder builder) {
builder.domain(domain.value());
builder.service(service.value());
// Current interpretation of loadbalancer address is: hostname.
// Config should be renamed or send the uri
builder.loadBalancerAddress(loadBalancerName.value());
builder.ztsUrl(ztsUrl != null ? ztsUrl.toString() : "");
builder.athenzDnsSuffix(athenzDnsSuffix != null ? athenzDnsSuffix : "");
builder.nodeIdentityName(configServerDomain() + ".tenant"); // TODO Move to Oath configmodel amender
builder.configserverIdentityName(getConfigserverIdentityName());
}
// TODO Move to Oath configmodel amender
private String getConfigserverIdentityName() {
return String.format("%s.provider_%s_%s",
configServerDomain(),
zone.environment().value(),
zone.region().value());
}
private String configServerDomain() {
return zone.system() == SystemName.main ? "vespa.vespa" : "vespa.vespa.cd";
}
}