Skip to content

Commit

Permalink
Bump default versions to 1.10.0
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Bridgen <[email protected]>
  • Loading branch information
squaremo committed Oct 24, 2022
1 parent c0ce680 commit 20bd15b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/flux-source/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ app$ pulumi up
This creates a `GitRepository` object in the cluster, which you can examine:

```console
kubectl get gitrepository
app$ kubectl get gitrepository
```

and a `Stack` object, pointing at the `GitRepository` object, which will run the program and create
Expand Down
4 changes: 2 additions & 2 deletions examples/flux-source/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import * as flux from "@worawat/flux";
const config = new pulumi.Config();
const deployNamespace = config.get("namespace") || 'default';
const deployNamespaceList = config.getObject<string[]>("namespaces") || [deployNamespace];
const operatorVersion = config.get("operator-version") || "v1.9.0";
const crdVersion = config.get("crd-version") || "v1.9.0";
const operatorVersion = config.get("operator-version") || "v1.10.0";
const crdVersion = config.get("crd-version") || "v1.10.0";

// -- Flux installation

Expand Down

0 comments on commit 20bd15b

Please sign in to comment.