Skip to content

Commit 68de44e

Browse files
committed
chore: update repo name
While fixing #2181 I found several references to the original repo name, updating those for consistency and to avoid future breakage. Note: PR check and e2e build still use podman-desktop-extension-bootc as a folder name, but that's not directly related. Related to #2181. Signed-off-by: Tim deBoer <git@tdeboer.ca>
1 parent 5b67745 commit 68de44e

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Workflow for developing:
1818
pnpm watch
1919

2020
# In a separate terminal in the Podman Desktop folder:
21-
pnpm watch --extension-folder ../podman-desktop-extension-bootc/packages/backend
21+
pnpm watch --extension-folder ../extension-bootc/packages/backend
2222
```
2323

2424
Workflow for testing and validation checking before PR submission:

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BootC (Bootable Container) Extension for Podman Desktop
22

3-
![](https://raw.githubusercontent.com/podman-desktop/podman-desktop-extension-bootc/main/docs/img/banner.png)
3+
![](https://raw.githubusercontent.com/podman-desktop/extension-bootc/main/docs/img/banner.png)
44

55
Want to create a bootable operating system from a Containerfile? Download this extension!
66

@@ -85,7 +85,7 @@ All of our maintained example images are on the [gitlab.com/fedora/bootc/example
8585

8686
You can also pull our example image based on the [`httpd`](https://gitlab.com/bootc-org/examples/-/tree/main/httpd) example:
8787

88-
![](https://raw.githubusercontent.com/podman-desktop/podman-desktop-extension-bootc/main/docs/img/clicking_pull.gif)
88+
![](https://raw.githubusercontent.com/podman-desktop/extension-bootc/main/docs/img/clicking_pull.gif)
8989

9090
## Use Case
9191

@@ -133,7 +133,7 @@ podman machine start
133133

134134
Or set when initially creating a Podman Machine via Podman Desktop:
135135

136-
![rootful setup](https://raw.githubusercontent.com/podman-desktop/podman-desktop-extension-bootc/main/docs/img/rootful_setup.png)
136+
![rootful setup](https://raw.githubusercontent.com/podman-desktop/extension-bootc/main/docs/img/rootful_setup.png)
137137

138138
### Escalated Privileges (Linux)
139139

@@ -151,7 +151,7 @@ This extension can be installed through the **Extensions** section of Podman Des
151151
2. Click on the **Catalog** tab.
152152
3. Install the extension.
153153

154-
![](https://raw.githubusercontent.com/podman-desktop/podman-desktop-extension-bootc/main/docs/img/catalog_install.gif)
154+
![](https://raw.githubusercontent.com/podman-desktop/extension-bootc/main/docs/img/catalog_install.gif)
155155

156156
### Nightly version
157157

@@ -175,13 +175,13 @@ FROM quay.io/centos-bootc/centos-bootc:stream10
175175
RUN echo "root:root" | chpasswd
176176
```
177177

178-
![](https://raw.githubusercontent.com/podman-desktop/podman-desktop-extension-bootc/main/docs/img/build_image.gif)
178+
![](https://raw.githubusercontent.com/podman-desktop/extension-bootc/main/docs/img/build_image.gif)
179179

180180
2. **Build the disk image:**
181181

182182
> Build the disk image, this takes approximately 2-5 minutes depending on the performance of your machine.
183183
184-
![](https://raw.githubusercontent.com/podman-desktop/podman-desktop-extension-bootc/main/docs/img/bootc_building.gif)
184+
![](https://raw.githubusercontent.com/podman-desktop/extension-bootc/main/docs/img/bootc_building.gif)
185185

186186
3. **Testing the image locally (macOS and Linux):**
187187

@@ -195,11 +195,11 @@ ssh-keygen -t ed25519
195195

196196
Your public key information (ex. `ssh-ed25519 AAABBBCCC...`) from `~/.ssh/id_ed25519.pub` must be added to your bootc image during the build process for SSH access to work.
197197

198-
![](https://raw.githubusercontent.com/podman-desktop/podman-desktop-extension-bootc/main/docs/img/vm.gif)
198+
![](https://raw.githubusercontent.com/podman-desktop/extension-bootc/main/docs/img/vm.gif)
199199

200200
## Advanced usage
201201

202-
![](https://raw.githubusercontent.com/podman-desktop/podman-desktop-extension-bootc/main/docs/img/balena_etcher.png)
202+
![](https://raw.githubusercontent.com/podman-desktop/extension-bootc/main/docs/img/balena_etcher.png)
203203

204204
### Booting the image
205205

@@ -226,7 +226,7 @@ See [bootc-dev.github.io/bootc](https://bootc-dev.github.io/bootc) for more info
226226

227227
Preferences such as the default `bootc-builder-image` as well as timeouts can be adjusted within the **Preferences** section of Podman Desktop.
228228

229-
![](https://raw.githubusercontent.com/podman-desktop/podman-desktop-extension-bootc/main/docs/img/preferences.png)
229+
![](https://raw.githubusercontent.com/podman-desktop/extension-bootc/main/docs/img/preferences.png)
230230

231231
## Offline / airplane mode
232232

RELEASE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ In the below example, we will pretend that we're upgrading from `1.1.0` to `1.2.
1010

1111
## Releasing on GitHub
1212

13-
1. Go to https://github.com/podman-desktop/podman-desktop-extension-bootc/actions/workflows/release.yaml.
13+
1. Go to https://github.com/podman-desktop/extension-bootc/actions/workflows/release.yaml.
1414
1. Click on the top right drop-down menu `Run workflow`.
1515
1. Enter the name of the release. Example: `1.2.0` (DO NOT use the v prefix like v1.2.0)
1616
1. Specify the branch to use for the new release. It's main for all major releases. For a bugfix release, you'll select a different branch.
1717
1. Click on the `Run workflow` button.
1818
1. Note: `Run workflow` takes approximately 20-30 minutes since we build and install the dependencies from scratch, go grab a coffee!
19-
1. Make sure that all tasks for the respective release milestone are completed / updated, then close it. https://github.com/podman-desktop/podman-desktop-extension-bootc/milestones
19+
1. Make sure that all tasks for the respective release milestone are completed / updated, then close it. https://github.com/podman-desktop/extension-bootc/milestones
2020
1. If not already created, click on `New Milestone` and create a new milestone for the NEXT release.
21-
1. Check that https://github.com/podman-desktop/podman-desktop-extension-bootc/actions/workflows/release.yaml has been completed.
21+
1. Check that https://github.com/podman-desktop/extension-bootc/actions/workflows/release.yaml has been completed.
2222
1. Ensure the image has been successfully published to https://github.com/podman-desktop/extension-bootc/pkgs/container/extension-bootc
2323
1. There should be an automated PR that has been created. The title looks like `chore: 📢 Bump version to 1.3.0`. Rerun workflow manually if some of e2e tests are failing.
2424
1. Wait for the PR above to be approved and merged before continuing with the steps.
25-
1. Edit the new release https://github.com/podman-desktop/podman-desktop-extension-bootc/releases/edit/v1.2.0.
25+
1. Edit the new release https://github.com/podman-desktop/extension-bootc/releases/edit/v1.2.0.
2626
1. Select previous tag (v1.1.0) and click on `Generate release notes` and then click on `Update release`.
2727

2828
## Release testing

0 commit comments

Comments
 (0)