You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/v1/coherence_types.go
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright (c) 2019, 2021 Oracle and/or its affiliates.
2
+
* Copyright (c) 2022, Oracle and/or its affiliates.
3
3
* Licensed under the Universal Permissive License v 1.0 as shown at
4
4
* http://oss.oracle.com/licenses/upl.
5
5
*/
@@ -1953,7 +1953,7 @@ type ScalingSpec struct {
1953
1953
// Enabled to false then no check will take place and a deployment will be assumed to be safe).
1954
1954
// +k8s:openapi-gen=true
1955
1955
typeProbestruct {
1956
-
corev1.Handler`json:",inline"`
1956
+
corev1.ProbeHandler`json:",inline"`
1957
1957
// Number of seconds after which the handler times out (only applies to http and tcp handlers).
1958
1958
// Defaults to 1 second. Minimum value is 1.
1959
1959
// +optional
@@ -2102,6 +2102,17 @@ type NetworkSpec struct {
2102
2102
// Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.
2103
2103
// +optional
2104
2104
Hostname*string`json:"hostname,omitempty"`
2105
+
// SetHostnameAsFQDN if true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default).
2106
+
// In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname).
2107
+
// In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN.
2108
+
// If a pod does not have FQDN, this has no effect.
0 commit comments