Skip to content
This repository was archived by the owner on Jun 26, 2026. It is now read-only.

Commit 847c4e3

Browse files
matejvasekclaude
andcommitted
fix: update repo owner and name for org move
Replace hardcoded twoGiants/func-console with functions-dev/ocp-console-plugin in README.md, package.json, pages/index.html, and hack/next-plan-number.sh for the planned repo move. Signed-off-by: Matej Vašek <matejvasek@gmail.com> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 91fc267 commit 847c4e3

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Functions-as-a-Service PoC UI for the OpenShift Web Console. Developers create
44

55
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.
66

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

99
## Deployment on cluster
1010

@@ -18,7 +18,7 @@ Check out the **[Github page](https://functions-dev.github.io/func-console/)** f
1818

1919
```shell
2020
oc new-project console-functions-plugin
21-
oc apply -f https://functions-dev.github.io/func-console/plugin.yaml
21+
oc apply -f https://functions-dev.github.io/ocp-console-plugin/plugin.yaml
2222
```
2323

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

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

3535
```shell
36-
--set "plugin.image=ghcr.io/functions-dev/console-functions-plugin:sha-<commit>"
36+
--set "plugin.image=ghcr.io/functions-dev/ocp-console-plugin-functions-plugin:sha-<commit>"
3737
```
3838

39-
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.
39+
Available image tags are listed in the [container registry](https://github.com/functions-dev/ocp-console-plugin/pkgs/container/console-functions-plugin). Consult the chart [values](charts/openshift-console-plugin/values.yaml) file for additional parameters.
4040

4141
## Development
4242

hack/next-plan-number.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# Usage: ./hack/next-plan-number.sh
44
set -euo pipefail
55

6-
repo="functions-dev/func-console"
6+
repo="functions-dev/ocp-console-plugin"
77
highest=$(gh pr list --repo "$repo" --state all --json number --jq '.[].number' | sort -n | tail -1)
88
printf '%03d\n' $(( ${highest:-0} + 1 ))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"license": "Apache-2.0",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/functions-dev/func-console.git"
9+
"url": "https://github.com/functions-dev/ocp-console-plugin.git"
1010
},
1111
"scripts": {
1212
"clean": "rm -rf dist",

pages/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,16 +190,16 @@ <h5 class="card-title">Install</h5>
190190
<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>
191191
</button>
192192
<pre><code id="install-cmd"><span class="prompt">$</span> oc new-project console-functions-plugin
193-
<span class="prompt">$</span> oc apply -f https://functions-dev.github.io/func-console/plugin.yaml</code></pre>
193+
<span class="prompt">$</span> oc apply -f https://functions-dev.github.io/ocp-console-plugin/plugin.yaml</code></pre>
194194
</div>
195195
</div>
196196

197197
<div class="card fade-in fade-in-delay-2">
198198
<h5 class="card-title">Resources</h5>
199199
<div class="btn-row">
200200
<a href="plugin.yaml" class="btn btn-accent">plugin.yaml</a>
201-
<a href="https://github.com/functions-dev/func-console" class="btn btn-ghost">Repository</a>
202-
<a href="https://github.com/functions-dev/func-console/pkgs/container/console-functions-plugin" class="btn btn-ghost">Container Registry</a>
201+
<a href="https://github.com/functions-dev/ocp-console-plugin" class="btn btn-ghost">Repository</a>
202+
<a href="https://github.com/functions-dev/ocp-console-plugin/pkgs/container/console-functions-plugin" class="btn btn-ghost">Container Registry</a>
203203
</div>
204204
</div>
205205

0 commit comments

Comments
 (0)