pl.allegro.tech.servicemesh.envoycontrol.EnvoyControl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of envoy-control-runner Show documentation
Show all versions of envoy-control-runner Show documentation
Production-ready Control Plane for Service Mesh based on Envoy Proxy.
package pl.allegro.tech.servicemesh.envoycontrol
import org.springframework.boot.CommandLineRunner
import org.springframework.boot.SpringApplication
import org.springframework.boot.autoconfigure.SpringBootApplication
@SpringBootApplication
class EnvoyControl(
val controlPlane: ControlPlane
) : CommandLineRunner {
override fun run(vararg args: String?) {
controlPlane.start()
}
companion object {
@JvmStatic
fun main(args: Array) {
SpringApplication.run(EnvoyControl::class.java, *args)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy