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
Provide the correct Hub DNS name in the Ansible extra_vars
Using the Kubernetes configuration leads to a local DNS name when
running in the cluster. This commit changes it to use the OpenShift
dnses custom resource to get the value. Other Kubernetes distributions
could have their own implementations added later.
Relates:
https://issues.redhat.com/browse/ACM-2410
Signed-off-by: mprahl <[email protected]>
description: "DNS holds cluster-wide information about DNS. The canonical
34
+
name is `cluster` \n Compatibility level 1: Stable within a major release
35
+
for a minimum of 12 months or 3 minor releases (whichever is longer)."
36
+
properties:
37
+
apiVersion:
38
+
description: 'APIVersion defines the versioned schema of this representation
39
+
of an object. Servers should convert recognized schemas to the latest
40
+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
41
+
type: string
42
+
kind:
43
+
description: 'Kind is a string value representing the REST resource this
44
+
object represents. Servers may infer this from the endpoint the client
45
+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
46
+
type: string
47
+
metadata:
48
+
type: object
49
+
spec:
50
+
description: spec holds user settable values for configuration
51
+
properties:
52
+
baseDomain:
53
+
description: "baseDomain is the base domain of the cluster. All managed
54
+
DNS records will be sub-domains of this base. \n For example, given
55
+
the base domain `openshift.example.com`, an API server DNS record
56
+
may be created for `cluster-api.openshift.example.com`. \n Once
57
+
set, this field cannot be changed."
58
+
type: string
59
+
privateZone:
60
+
description: "privateZone is the location where all the DNS records
61
+
that are only available internally to the cluster exist. \n If this
62
+
field is nil, no private records should be created. \n Once set,
63
+
this field cannot be changed."
64
+
properties:
65
+
id:
66
+
description: "id is the identifier that can be used to find the
67
+
DNS hosted zone. \n on AWS zone can be fetched using `ID` as
68
+
id in [1] on Azure zone can be fetched using `ID` as a pre-determined
69
+
name in [2], on GCP zone can be fetched using `ID` as a pre-determined
70
+
name in [3]. \n [1]: https://docs.aws.amazon.com/cli/latest/reference/route53/get-hosted-zone.html#options
0 commit comments