diff --git a/lib/shared/addon/all-dns-records/service.js b/lib/shared/addon/all-dns-records/service.js index 2692a2b9f..688de34b3 100644 --- a/lib/shared/addon/all-dns-records/service.js +++ b/lib/shared/addon/all-dns-records/service.js @@ -31,7 +31,7 @@ export default Service.extend({ dnsRecords: function () { const intl = get(this, 'intl'); - return get(this, '_allDnsRecords').map(x => convert(x, intl)).sortBy('combined'); + return get(this, '_allDnsRecords').filter(x => get(x, 'ownerReferences.firstObject.kind') !== 'Ingress').map(x => convert(x, intl)).sortBy('combined'); }.property('_allDnsRecords.@each.{id,namespaceId,displayName,type}'), list: alias('dnsRecords'),