Skip to content

Commit 5224152

Browse files
committed
Move to the pattern-ui-catalog name
1 parent 04a8122 commit 5224152

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/build-and-push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
env:
1717
REGISTRY: localhost
18-
NAME: pattern-catalog
18+
NAME: pattern-ui-catalog
1919
TAG: ${{ github.ref_name == 'main' && 'latest' || github.ref_name }}
2020

2121
jobs:
@@ -58,7 +58,7 @@ jobs:
5858
TARGETARCH: ${{ matrix.targetarch }}
5959
run: |
6060
make generate-dockerfile
61-
buildah build --platform "linux/${TARGETARCH}" -f pattern-catalog.Dockerfile -t "${CONTAINER}-${TARGETARCH}" .
61+
buildah build --platform "linux/${TARGETARCH}" -f pattern-ui-catalog.Dockerfile -t "${CONTAINER}-${TARGETARCH}" .
6262
buildah push "${CONTAINER}-${TARGETARCH}" "docker-archive:/tmp/image-${TARGETARCH}.tar:${CONTAINER}-${TARGETARCH}"
6363
6464
- name: Upload image artifact
@@ -70,7 +70,7 @@ jobs:
7070

7171
push-multiarch-manifest:
7272
needs: [build-container]
73-
if: github.repository == 'validatedpatterns/pattern-catalog'
73+
if: github.repository == 'validatedpatterns/pattern-ui-catalog'
7474
runs-on: ubuntu-latest
7575
environment: quay
7676
permissions:

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ REGISTRY ?= localhost
44
UPLOADREGISTRY ?= quay.io/validatedpatterns
55

66
# Image base URL of the pattern catalog
7-
PATTERN_CATALOG_IMAGE_BASE ?= $(UPLOADREGISTRY)/pattern-catalog
7+
PATTERN_CATALOG_IMAGE_BASE ?= $(UPLOADREGISTRY)/pattern-ui-catalog
88
PATTERN_CATALOG_IMAGE ?= $(PATTERN_CATALOG_IMAGE_BASE):$(VERSION)
9-
PATTERN_CATALOG_DOCKERFILE ?= pattern-catalog.Dockerfile
9+
PATTERN_CATALOG_DOCKERFILE ?= pattern-ui-catalog.Dockerfile
1010

1111
.PHONY: help
1212
help: ## Display this help.
@@ -21,15 +21,15 @@ generate-catalog: ## Generates actual catalog yaml tree
2121
# Generate Dockerfile for pattern catalog using the template
2222
.PHONY: generate-dockerfile
2323
generate-dockerfile: ## Generate Dockerfile from template
24-
VERSION=$(VERSION) SUPPORTED_OCP_VERSIONS=$(SUPPORTED_OCP_VERSIONS) envsubst < templates/pattern-catalog.Dockerfile.template > $(PATTERN_CATALOG_DOCKERFILE)
24+
VERSION=$(VERSION) SUPPORTED_OCP_VERSIONS=$(SUPPORTED_OCP_VERSIONS) envsubst < templates/pattern-ui-catalog.Dockerfile.template > $(PATTERN_CATALOG_DOCKERFILE)
2525

26-
.PHONY: pattern-catalog-build
27-
pattern-catalog-build: generate-dockerfile## Build the pattern catalog image
26+
.PHONY: pattern-ui-catalog-build
27+
pattern-ui-catalog-build: generate-dockerfile## Build the pattern catalog image
2828
@echo "Building pattern catalog image..."
2929
@podman pull $(PATTERN_CATALOG_IMAGE_BASE):latest 2>/dev/null || true
3030
podman build -f $(PATTERN_CATALOG_DOCKERFILE) -t ${PATTERN_CATALOG_IMAGE} .
3131
podman tag ${PATTERN_CATALOG_IMAGE} $(PATTERN_CATALOG_IMAGE_BASE):latest
3232

33-
.PHONY: pattern-catalog-push
34-
pattern-catalog-push: ## Push the pattern catalog image
33+
.PHONY: pattern-ui-catalog-push
34+
pattern-ui-catalog-push: ## Push the pattern catalog image
3535
podman push $(PATTERN_CATALOG_IMAGE)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ git push origin main # or stable-v1
4444
### Build and push the container image locally
4545

4646
```sh
47-
make pattern-catalog-build
48-
make pattern-catalog-push
47+
make pattern-ui-catalog-build
48+
make pattern-ui-catalog-push
4949
```
5050

5151
## CI/CD
@@ -56,7 +56,7 @@ workflow itself change:
5656

5757
1. **validate-yaml** — validates all YAML files under `catalog/` with `yamllint`
5858
2. **build-container** — builds the image for amd64 and arm64 in parallel on native runners
59-
3. **push-multiarch-manifest** — assembles a multi-arch manifest, pushes to Quay, and signs with cosign (only in the upstream `validatedpatterns/pattern-catalog` repo)
59+
3. **push-multiarch-manifest** — assembles a multi-arch manifest, pushes to Quay, and signs with cosign (only in the upstream `validatedpatterns/pattern-ui-catalog` repo)
6060

6161
| Branch | Image tag |
6262
|-------------|---------------|

catalog/catalog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
generated_at: "2026-03-11T15:37:24Z"
1+
generated_at: "2026-03-13T15:39:18Z"
22
generator_version: "1.0"
33
patterns:
44
- ansible-edge-gitops

templates/pattern-catalog.Dockerfile.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ LABEL \
77
io.k8s.description="" \
88
io.openshift.tags="openshift,patterns" \
99
distribution-scope="public" \
10-
name="patterns-operator-pattern-catalog" \
10+
name="patterns-operator-pattern-ui-catalog" \
1111
summary="Pattern Catalog" \
1212
release="v${VERSION}" \
1313
version="v${VERSION}" \
1414
maintainer="https://groups.google.com/g/validatedpatterns" \
15-
url="https://github.com/validatedpatterns/pattern-catalog.git" \
15+
url="https://github.com/validatedpatterns/pattern-ui-catalog.git" \
1616
vendor="Red Hat" \
1717
License="Apache License 2.0"
1818

0 commit comments

Comments
 (0)