io.javaoperatorsdk.operator.sample.WebServerSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webserver-sample Show documentation
Show all versions of webserver-sample Show documentation
Provisions an nginx Webserver based on a CRD
package io.javaoperatorsdk.operator.sample;
public class WebServerSpec {
private String html;
public String getHtml() {
return html;
}
public void setHtml(String html) {
this.html = html;
}
}