Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 0 additions & 90 deletions manifests/baremetal/coredns.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
reload
template IN {{`{{ .Cluster.IngressVIPRecordType }}`}} {{ .ControllerConfig.DNS.Spec.BaseDomain }} {
match .*.apps.{{ .ControllerConfig.DNS.Spec.BaseDomain }}
answer "{{`{{"{{ .Name }}"}}`}} 60 in {{`{{"{{ .Type }}"}}`}} {{ .ControllerConfig.Infra.Status.PlatformStatus.BareMetal.IngressIP }}"
answer "{{`{{"{{ .Name }}"}}`}} 60 in {{`{{"{{ .Type }}"}}`}} {{ onPremPlatformIngressIP .ControllerConfig }}"
fallthrough
}
template IN {{`{{ .Cluster.IngressVIPEmptyType }}`}} {{ .ControllerConfig.DNS.Spec.BaseDomain }} {
Expand All @@ -16,7 +16,7 @@
}
template IN {{`{{ .Cluster.APIVIPRecordType }}`}} {{ .ControllerConfig.DNS.Spec.BaseDomain }} {
match api.{{ .ControllerConfig.DNS.Spec.BaseDomain }}
answer "{{`{{"{{ .Name }}"}}`}} 60 in {{`{{"{{ .Type }}"}}`}} {{ .ControllerConfig.Infra.Status.PlatformStatus.BareMetal.APIServerInternalIP }}"
answer "{{`{{"{{ .Name }}"}}`}} 60 in {{`{{"{{ .Type }}"}}`}} {{ onPremPlatformAPIServerInternalIP .ControllerConfig }}"
fallthrough
}
template IN {{`{{ .Cluster.APIVIPEmptyType }}`}} {{ .ControllerConfig.DNS.Spec.BaseDomain }} {
Expand All @@ -25,7 +25,7 @@
}
template IN {{`{{ .Cluster.APIVIPRecordType }}`}} {{ .ControllerConfig.DNS.Spec.BaseDomain }} {
match api-int.{{ .ControllerConfig.DNS.Spec.BaseDomain }}
answer "{{`{{"{{ .Name }}"}}`}} 60 in {{`{{"{{ .Type }}"}}`}} {{ .ControllerConfig.Infra.Status.PlatformStatus.BareMetal.APIServerInternalIP }}"
answer "{{`{{"{{ .Name }}"}}`}} 60 in {{`{{"{{ .Type }}"}}`}} {{ onPremPlatformAPIServerInternalIP .ControllerConfig }}"
fallthrough
}
template IN {{`{{ .Cluster.APIVIPEmptyType }}`}} {{ .ControllerConfig.DNS.Spec.BaseDomain }} {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ kind: Pod
apiVersion: v1
metadata:
name: coredns
namespace: openshift-openstack-infra
namespace: openshift-{{ onPremPlatformShortName .ControllerConfig }}-infra
creationTimestamp:
deletionGracePeriodSeconds: 65
labels:
app: openstack-infra-mdns
app: {{ onPremPlatformShortName .ControllerConfig }}-infra-mdns
spec:
volumes:
- name: resource-dir
Expand All @@ -29,9 +29,9 @@ spec:
- render
- "/etc/kubernetes/kubeconfig"
- "--api-vip"
- "{{ .ControllerConfig.Infra.Status.PlatformStatus.OpenStack.APIServerInternalIP }}"
- "{{ onPremPlatformAPIServerInternalIP .ControllerConfig }}"
- "--ingress-vip"
- "{{ .ControllerConfig.Infra.Status.PlatformStatus.OpenStack.IngressIP }}"
- "{{ onPremPlatformIngressIP .ControllerConfig }}"
- "/config"
- "--out-dir"
- "/etc/coredns"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ kind: Pod
apiVersion: v1
metadata:
name: keepalived
namespace: openshift-kni-infra
namespace: openshift-{{ onPremPlatformShortName .ControllerConfig }}-infra
creationTimestamp:
deletionGracePeriodSeconds: 65
labels:
app: kni-infra-vrrp
app: {{ onPremPlatformShortName .ControllerConfig }}-infra-vrrp
spec:
volumes:
- name: resource-dir
Expand Down Expand Up @@ -114,9 +114,9 @@ spec:
- "/config/keepalived.conf.tmpl"
- "/etc/keepalived/keepalived.conf"
- "--api-vip"
- "{{ .ControllerConfig.Infra.Status.PlatformStatus.BareMetal.APIServerInternalIP }}"
- "{{ onPremPlatformAPIServerInternalIP .ControllerConfig }}"
- "--ingress-vip"
- "{{ .ControllerConfig.Infra.Status.PlatformStatus.BareMetal.IngressIP }}"
- "{{ onPremPlatformIngressIP .ControllerConfig }}"
- "--cluster-config"
- "/opt/openshift/manifests/cluster-config.yaml"
- "--check-interval"
Expand Down
14 changes: 0 additions & 14 deletions manifests/openstack/coredns-corefile.tmpl

This file was deleted.

20 changes: 0 additions & 20 deletions manifests/openstack/keepalived.conf.tmpl

This file was deleted.

81 changes: 0 additions & 81 deletions manifests/openstack/keepalived.yaml

This file was deleted.

12 changes: 0 additions & 12 deletions manifests/ovirt/coredns-corefile.tmpl

This file was deleted.

90 changes: 0 additions & 90 deletions manifests/ovirt/coredns.yaml

This file was deleted.

Loading