Skip to content

Commit

Permalink
Add linode provider support
Browse files Browse the repository at this point in the history
Will be useful for when we demo to them in a bit.
  • Loading branch information
michaeljguarino committed Jan 4, 2024
1 parent 0f2e4a4 commit 5c460b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/core/lib/core/schema/provider_scaffold.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule Core.Schema.ProviderScaffold do
defstruct [:name, :content]
@providers ~w(aws gcp azure equinix kind generic)a
@providers ~w(aws gcp azure equinix kind generic linode)a

def available(), do: @providers

Expand Down
Binary file added www/public/linode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions www/src/components/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const DEFAULT_AZURE_ICON = '/azure.png'
export const DEFAULT_AWS_ICON = '/aws.png'
export const DEFAULT_EQUINIX_ICON = '/equinix-metal.png'
export const DEFAULT_KIND_ICON = '/kind.png'
export const DEFAULT_LINODE_ICON = '/linode.png'
export const DARK_AWS_ICON = '/aws-icon.png'

export const ProviderIcons = {
Expand All @@ -22,6 +23,7 @@ export const ProviderIcons = {
AZURE: DEFAULT_AZURE_ICON,
EQUINIX: DEFAULT_EQUINIX_ICON,
KIND: DEFAULT_KIND_ICON,
LINODE: DEFAULT_LINODE_ICON,
GENERIC: DEFAULT_CHART_ICON,
}

Expand Down

0 comments on commit 5c460b1

Please sign in to comment.