Work In Progress, will move to a repo once demo is completed
BSP/sample rootfs
downloads: https://developer.nvidia.com/embedded/jetson-linux-r3640
- Get board into recovery mode (power off, hold reset button, power on and let go after 3s)
Work In Progress, will move to a repo once demo is completed
BSP/sample rootfs
downloads: https://developer.nvidia.com/embedded/jetson-linux-r3640
import { expect } from "@playwright/test" | |
import { test } from "../../../e2e" | |
import { K8s as k, kind } from "kubernetes-fluent-client" | |
test("has title", async ({ page, pkg }) => { | |
await page.goto("/") | |
const ns = pkg.components.at(0)?.charts?.at(0)?.namespace || "" | |
expect(ns).toBeTruthy() |
// This example is a naive translation of the shell task into Go, | |
// there are many optimizations + reuse needed before this would be fully accepted as a builtin | |
// + unit tests | |
// BuiltinSetupDougUser sets up a doug user in Keycloak | |
type BuiltinSetupDougUser struct { | |
KeycloakGroup string `json:"keycloak_group,omitempty" jsonschema:"description=Optional Keycloak group to add the user to"` | |
} | |
func (b BuiltinSetupDougUser) Execute(ctx context.Context) error { |