Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A Functions-as-a-Service PoC UI for the OpenShift Web Console. Developers create

Built as an [OpenShift Console dynamic plugin](https://github.com/openshift/console/tree/main/frontend/packages/console-dynamic-plugin-sdk) using React, TypeScript, and PatternFly 6.

Check out the **[Github page](https://twogiants.github.io/func-console/)** for a quick start or read ahead.
Check out the **[Github page](https://functions-dev.github.io/func-console/)** for a quick start or read ahead.

## Deployment on cluster

Expand All @@ -18,7 +18,7 @@ Check out the **[Github page](https://twogiants.github.io/func-console/)** for a

```shell
oc new-project console-functions-plugin
oc apply -f https://twogiants.github.io/func-console/plugin.yaml
oc apply -f https://functions-dev.github.io/func-console/plugin.yaml
```

### Manual install (requires [Helm](https://helm.sh))
Expand All @@ -27,16 +27,16 @@ oc apply -f https://twogiants.github.io/func-console/plugin.yaml
oc new-project console-functions-plugin
helm upgrade -i console-functions-plugin charts/openshift-console-plugin \
-n console-functions-plugin --create-namespace \
--set "plugin.image=ghcr.io/twogiants/console-functions-plugin:latest@sha256:<digest>"
--set "plugin.image=ghcr.io/functions-dev/console-functions-plugin:latest@sha256:<digest>"
```

To deploy a specific build, use its git commit SHA as the tag:

```shell
--set "plugin.image=ghcr.io/twogiants/console-functions-plugin:sha-<commit>"
--set "plugin.image=ghcr.io/functions-dev/console-functions-plugin:sha-<commit>"
```

Available image tags are listed in the [container registry](https://github.com/twoGiants/func-console/pkgs/container/console-functions-plugin). Consult the chart [values](charts/openshift-console-plugin/values.yaml) file for additional parameters.
Available image tags are listed in the [container registry](https://github.com/functions-dev/func-console/pkgs/container/console-functions-plugin). Consult the chart [values](charts/openshift-console-plugin/values.yaml) file for additional parameters.

## Development

Expand Down
2 changes: 1 addition & 1 deletion hack/next-plan-number.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# Usage: ./hack/next-plan-number.sh
set -euo pipefail

repo="twoGiants/func-console"
repo="functions-dev/func-console"
highest=$(gh pr list --repo "$repo" --state all --json number --jq '.[].number' | sort -n | tail -1)
printf '%03d\n' $(( ${highest:-0} + 1 ))
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/twoGiants/func-console.git"
"url": "https://github.com/functions-dev/func-console.git"
},
"scripts": {
"clean": "rm -rf dist",
Expand Down
6 changes: 3 additions & 3 deletions pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,16 +190,16 @@ <h5 class="card-title">Install</h5>
<svg class="check-icon" viewBox="0 0 16 16" fill="currentColor"><path d="M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z"/></svg>
</button>
<pre><code id="install-cmd"><span class="prompt">$</span> oc new-project console-functions-plugin
<span class="prompt">$</span> oc apply -f https://twogiants.github.io/func-console/plugin.yaml</code></pre>
<span class="prompt">$</span> oc apply -f https://functions-dev.github.io/func-console/plugin.yaml</code></pre>
</div>
</div>

<div class="card fade-in fade-in-delay-2">
<h5 class="card-title">Resources</h5>
<div class="btn-row">
<a href="plugin.yaml" class="btn btn-accent">plugin.yaml</a>
<a href="https://github.com/twoGiants/func-console" class="btn btn-ghost">Repository</a>
<a href="https://github.com/twoGiants/func-console/pkgs/container/console-functions-plugin" class="btn btn-ghost">Container Registry</a>
<a href="https://github.com/functions-dev/func-console" class="btn btn-ghost">Repository</a>
<a href="https://github.com/functions-dev/func-console/pkgs/container/console-functions-plugin" class="btn btn-ghost">Container Registry</a>
</div>
</div>

Expand Down