diff --git a/example/sample-job/dev/kcl.mod b/example/simple-job/dev/kcl.mod similarity index 88% rename from example/sample-job/dev/kcl.mod rename to example/simple-job/dev/kcl.mod index 63079835..712e2bf3 100644 --- a/example/sample-job/dev/kcl.mod +++ b/example/simple-job/dev/kcl.mod @@ -1,5 +1,5 @@ [package] -name = "sample-job" +name = "simple-job" version = "0.1.0" [dependencies] diff --git a/example/sample-job/dev/main.k b/example/simple-job/dev/main.k similarity index 93% rename from example/sample-job/dev/main.k rename to example/simple-job/dev/main.k index 4abfd77d..ebdd1b59 100644 --- a/example/sample-job/dev/main.k +++ b/example/simple-job/dev/main.k @@ -2,7 +2,7 @@ import catalog.models.schema.v1 as ac import catalog.models.schema.v1.workload as wl import catalog.models.schema.v1.workload.container as c -samplejob: ac.AppConfiguration { +helloworld: ac.AppConfiguration { workload: wl.Job { containers: { "busybox": c.Container { diff --git a/example/sample-job/dev/stack.yaml b/example/simple-job/dev/stack.yaml similarity index 100% rename from example/sample-job/dev/stack.yaml rename to example/simple-job/dev/stack.yaml diff --git a/example/sample-job/project.yaml b/example/simple-job/project.yaml similarity index 77% rename from example/sample-job/project.yaml rename to example/simple-job/project.yaml index ea2e3c4a..6072de8c 100644 --- a/example/sample-job/project.yaml +++ b/example/simple-job/project.yaml @@ -1,4 +1,4 @@ # The project basic info -name: helloworld +name: simple-job generator: type: AppConfiguration \ No newline at end of file