mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-25 09:28:27 +02:00
11 lines
212 B
Python
11 lines
212 B
Python
from pulumi_kubernetes.yaml import ConfigGroup
|
|
|
|
from pathlib import Path
|
|
|
|
currentDir = Path(__file__).parent
|
|
|
|
kubevirt = ConfigGroup(
|
|
"virtual-machines",
|
|
files=[currentDir.as_posix() + "/yaml/*.yaml"],
|
|
)
|