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
1 change: 1 addition & 0 deletions desktop/src/renderer/public/icons/providers/podman.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ let { name, class: className = "size-8" }: { name: string; class?: string } =

const ICON_MAP: Record<string, string> = {
docker: "./icons/providers/docker.svg",
podman: "./icons/providers/podman.svg",
aws: "./icons/providers/aws.svg",
amazon: "./icons/providers/aws.svg",
gcloud: "./icons/providers/gcp.svg",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import type { UnlistenFn } from "$lib/ipc/types.js"

const PRESETS = [
{ name: "docker", description: "Local Docker containers" },
{ name: "podman", description: "Local Podman containers" },
{ name: "ssh", description: "Remote SSH machines" },
{ name: "kubernetes", description: "Kubernetes clusters" },
{ name: "aws", description: "Amazon Web Services" },
Expand Down
7 changes: 7 additions & 0 deletions desktop/src/renderer/src/lib/ipc/mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ const PROVIDERS: Provider[] = [
isDefault: true,
state: { initialized: true, singleMachine: true },
},
{
name: "podman",
version: "v0.0.1",
source: { github: "devsy-org/devsy-provider-podman" },
description: "Devsy on Podman",
state: { initialized: false, singleMachine: true },
},
{
name: "kubernetes",
version: "v0.3.2",
Expand Down
Loading