Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
eladcon committed May 29, 2024
1 parent 98c6abf commit 2d299fd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
5 changes: 3 additions & 2 deletions containers/helm.extern.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,9 @@ export class ApiObjectMetadataDefinition {
readonly addLabel: (key: string, value: string) => void;
/** Add an owner. */
readonly addOwnerReference: (owner: OwnerReference) => void;
/** @returns a value of a label or undefined */
readonly getLabel: (key: string) => string | void;
/**
@returns a value of a label or undefined */
readonly getLabel: (key: string) => (string) | undefined;
/** The name of the API object.
If a name is specified in `metadata.name` this will be the name returned.
Otherwise, a name will be generated by calling
Expand Down
4 changes: 2 additions & 2 deletions containers/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion containers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@winglibs/containers",
"version": "0.1.2",
"version": "0.1.1",
"description": "Container support for Wing",
"repository": {
"type": "git",
Expand Down
3 changes: 0 additions & 3 deletions containers/workload.w
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ pub class Workload impl api.IWorkload {
inner: api.IWorkload;

new(props: api.WorkloadProps) {
nodeof(this).icon = "cpu-chip";
nodeof(this).color = "cyan";

let target = util.env("WING_TARGET");

if target == "sim" {
Expand Down

0 comments on commit 2d299fd

Please sign in to comment.