@@ -135,12 +135,13 @@ public class DomainSpec {
135135 *
136136 */
137137 @ ApiModelProperty ("Automatic fluentd sidecar injection. If "
138- + "specified, the operator "
139- + "will deploy a sidecar container alongside each WebLogic Server instance that runs the exporter. "
140- + "WebLogic Server instances that are already running when the `monitoringExporter` field is created "
141- + "or deleted, will not be affected until they are restarted. When any given server "
142- + "is restarted for another reason, such as a change to the `restartVersion`, then the newly created pod "
143- + " will have the fluentd sidecar or not, as appropriate" )
138+ + "specified, the operator "
139+ + "will deploy a sidecar container alongside each WebLogic Server instance that runs the fluentd, "
140+ + "Optionally, the introspector job pod can be enabled to deploy with the fluentd sidecar container. "
141+ + "WebLogic Server instances that are already running when the `fluentdSpecification` field is created "
142+ + "or deleted, will not be affected until they are restarted. When any given server "
143+ + "is restarted for another reason, such as a change to the `restartVersion`, then the newly created pod "
144+ + " will have the fluentd sidecar or not, as appropriate" )
144145 private FluentdSpecification fluentdSpecification ;
145146
146147 public FluentdSpecification getFluentdSpecification () {
@@ -816,7 +817,8 @@ public String toString() {
816817 .append ("serverPod" , serverPod )
817818 .append ("serverService" , serverService )
818819 .append ("restartVersion" , restartVersion )
819- .append ("monitoringExporter" , monitoringExporter );
820+ .append ("monitoringExporter" , monitoringExporter )
821+ .append ("fluentdSpecification" , fluentdSpecification );
820822
821823 return builder .toString ();
822824 }
@@ -853,7 +855,8 @@ public int hashCode() {
853855 .append (serverService )
854856 .append (serverStartState )
855857 .append (restartVersion )
856- .append (monitoringExporter );
858+ .append (monitoringExporter )
859+ .append (fluentdSpecification );
857860
858861 return builder .toHashCode ();
859862 }
@@ -898,7 +901,8 @@ public boolean equals(Object other) {
898901 .append (serverService , rhs .serverService )
899902 .append (serverStartState , rhs .serverStartState )
900903 .append (restartVersion , rhs .restartVersion )
901- .append (monitoringExporter , rhs .monitoringExporter );
904+ .append (monitoringExporter , rhs .monitoringExporter )
905+ .append (fluentdSpecification , rhs .fluentdSpecification );
902906 return builder .isEquals ();
903907 }
904908}
0 commit comments