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
10 changes: 10 additions & 0 deletions REUSE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@ precedence = "aggregate"
SPDX-FileCopyrightText = "2017-2024 SAP SE or an SAP affiliate company and Gardener contributors"
SPDX-License-Identifier = "Apache-2.0"

[[annotations]]
path = [
"frontend/src/data/vendors/dns/**.js",
"frontend/src/data/vendors/infra/**.js",
"frontend/src/data/vendors/machineImage/**.js"
]
precedence = "closest"
SPDX-FileCopyrightText = "2026 SAP SE or an SAP affiliate company and Gardener contributors"
SPDX-License-Identifier = "Apache-2.0"

[[annotations]]
path = ["**.md", "docs/usage/shoot.yaml"]
precedence = "aggregate"
Expand Down
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/dns/alicloud-dns.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'alicloud-dns',
displayName: 'Alicloud DNS',
weight: 600,
icon: 'alicloud-dns.png',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/dns/aws-route53.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'aws-route53',
displayName: 'Amazon Route53',
weight: 100,
icon: 'aws-route53.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/dns/azure-dns.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'azure-dns',
displayName: 'Azure DNS',
weight: 200,
icon: 'azure-dns.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/dns/azure-private-dns.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'azure-private-dns',
displayName: 'Azure Private DNS',
weight: 300,
icon: 'azure-dns.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/dns/cloudflare.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'cloudflare-dns',
displayName: 'Cloudflare DNS',
weight: 10100,
icon: 'cloudflare-dns.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/dns/google-clouddns.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'google-clouddns',
displayName: 'Google Cloud DNS',
weight: 400,
icon: 'google-clouddns.svg',
}
25 changes: 25 additions & 0 deletions frontend/src/data/vendors/dns/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import awsRoute53 from './aws-route53'
import azureDns from './azure-dns'
import azurePrivateDns from './azure-private-dns'
import googleCloudDns from './google-clouddns'
import openstackDesignate from './openstack-designate'
import alicloudDns from './alicloud-dns'
import cloudflareDns from './cloudflare'
import infobloxDns from './infoblox'
import netlifyDns from './netlify'
import powerdns from './powerdns'
import rfc2136 from './rfc2136'

export default [
awsRoute53,
azureDns,
azurePrivateDns,
googleCloudDns,
openstackDesignate,
alicloudDns,
cloudflareDns,
infobloxDns,
netlifyDns,
powerdns,
rfc2136,
]
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/dns/infoblox.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'infoblox-dns',
displayName: 'Infoblox',
weight: 10200,
icon: 'infoblox-dns.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/dns/netlify.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'netlify-dns',
displayName: 'Netlify DNS',
weight: 10300,
icon: 'netlify-dns.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/dns/openstack-designate.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'openstack-designate',
displayName: 'OpenStack Designate',
weight: 500,
icon: 'openstack.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/dns/powerdns.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'powerdns',
displayName: 'PowerDNS',
weight: 10400,
icon: 'powerdns.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/dns/rfc2136.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'rfc2136',
displayName: 'Dynamic DNS (RFC2136)',
weight: 10500,
icon: 'rfc2136.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/infra/alicloud.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'alicloud',
displayName: 'Alibaba Cloud',
weight: 500,
icon: 'alicloud.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/infra/aws.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'aws',
displayName: 'AWS',
weight: 100,
icon: 'aws.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/infra/azure.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'azure',
displayName: 'Azure',
weight: 200,
icon: 'azure.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/infra/gcp.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'gcp',
displayName: 'Google Cloud',
weight: 300,
icon: 'gcp.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/infra/hcloud.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'hcloud',
displayName: 'Hetzner Cloud',
weight: 800,
icon: 'hcloud.svg',
}
27 changes: 27 additions & 0 deletions frontend/src/data/vendors/infra/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import aws from './aws'
import azure from './azure'
import gcp from './gcp'
import openstack from './openstack'
import alicloud from './alicloud'
import metal from './metal'
import vsphere from './vsphere'
import hcloud from './hcloud'
import onmetal from './onmetal'
import ironcore from './ironcore'
import stackit from './stackit'
import local from './local'

export default [
aws,
azure,
gcp,
openstack,
alicloud,
metal,
vsphere,
hcloud,
onmetal,
ironcore,
stackit,
local,
]
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/infra/ironcore.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'ironcore',
displayName: 'IronCore',
weight: 1000,
icon: 'ironcore.svg',
}
5 changes: 5 additions & 0 deletions frontend/src/data/vendors/infra/local.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default {
name: 'local',
displayName: 'Local',
weight: 10100,
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/infra/metal.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'metal',
displayName: 'metal-stack',
weight: 600,
icon: 'metal.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/infra/onmetal.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'onMetal',
displayName: 'OnMetal',
weight: 900,
icon: 'onmetal.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/infra/openstack.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'openstack',
displayName: 'OpenStack',
weight: 400,
icon: 'openstack.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/infra/stackit.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'stackit',
displayName: 'stackit',
weight: 1100,
icon: 'stackit.svg',
}
6 changes: 6 additions & 0 deletions frontend/src/data/vendors/infra/vsphere.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
name: 'vsphere',
displayName: 'vSphere',
weight: 700,
icon: 'vsphere.svg',
}
56 changes: 56 additions & 0 deletions frontend/src/data/vendors/machineImage/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
export default [
{
name: 'gardenlinux',
displayName: 'Garden Linux',
weight: 100,
icon: 'gardenlinux.svg',
},
{
name: 'gardenlinux-fips',
displayName: 'Garden Linux (FIPS)',
weight: 101,
icon: 'gardenlinux.svg',
},
{
name: 'ubuntu',
displayName: 'Ubuntu',
weight: 200,
icon: 'ubuntu.svg',
},
{
name: 'coreos',
displayName: 'CoreOS',
weight: 300,
icon: 'coreos.svg',
},
{
name: 'flatcar',
displayName: 'Flatcar',
weight: 400,
icon: 'flatcar.svg',
},
{
name: 'suse-jeos',
displayName: 'SUSE Linux Enterprise Server (JeOS)',
weight: 500,
icon: 'suse.svg',
},
{
name: 'suse-chost',
displayName: 'SUSE Container Host configuration (Chost)',
weight: 600,
icon: 'suse.svg',
},
{
name: 'memoryone-chost',
displayName: 'MemoryOne Container Host configuration (Chost)',
weight: 700,
icon: 'suse.svg',
},
{
name: 'memoryone-gardenlinux',
displayName: 'MemoryOne Garden Linux',
weight: 701,
icon: 'gardenlinux.svg',
},
]
Loading
Loading