Skip to content

Commit 3cec0eb

Browse files
authored
build: Rename module to d2iq-labs/cluster-api-runtime-extensions-nutanix (#454)
1 parent e1504e0 commit 3cec0eb

File tree

191 files changed

+757
-757
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+757
-757
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
devbox run -- \
195195
kind load docker-image \
196196
--name chart-testing \
197-
"ko.local/capi-runtime-extensions:$(devbox run -- gojq -r .version dist/metadata.json)"
197+
"ko.local/cluster-api-runtime-extensions-nutanix:$(devbox run -- gojq -r .version dist/metadata.json)"
198198
199199
- if: steps.list-changed.outputs.changed == 'true'
200200
name: Setup Cluster API and cert-manager
@@ -210,7 +210,7 @@ jobs:
210210
devbox run -- \
211211
ct install \
212212
--config charts/ct-config.yaml \
213-
--helm-extra-set-args "--set-string image.repository=ko.local/capi-runtime-extensions --set-string image.tag=$(devbox run -- gojq -r .version dist/metadata.json)"
213+
--helm-extra-set-args "--set-string image.repository=ko.local/cluster-api-runtime-extensions-nutanix --set-string image.tag=$(devbox run -- gojq -r .version dist/metadata.json)"
214214
env:
215215
KUBECONFIG: ct-kind-kubeconfig
216216

.github/workflows/github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
mapfile -t releases < <( devbox run -- gh release list --json tagName | devbox run -- gojq -r .[].tagName )
5959
for release in "${releases[@]}"; do
6060
if devbox run -- gh release download "${release}" \
61-
--pattern 'capi-runtime-extensions-*.tgz' \
61+
--pattern 'cluster-api-runtime-extensions-nutanix-*.tgz' \
6262
--dir docs/static/helm 2>/dev/null; then
6363
devbox run -- helm repo index docs/static/helm \
6464
--url "https://github.com/${{ github.repository }}/releases/download/${release}" \

.github/workflows/release-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ jobs:
5858
env:
5959
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6060
run: |
61-
devbox run -- helm package ./charts/capi-runtime-extensions \
61+
devbox run -- helm package ./charts/cluster-api-runtime-extensions-nutanix \
6262
--destination . \
6363
--version ${{ github.ref_name }} \
6464
--app-version ${{ github.ref_name }}
65-
devbox run -- gh release upload ${{ github.ref_name }} capi-runtime-extensions-*.tgz
65+
devbox run -- gh release upload ${{ github.ref_name }} cluster-api-runtime-extensions-nutanix-*.tgz
6666
6767
- name: Build GitHub pages
6868
uses: benc-uk/workflow-dispatch@v1

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ linters-settings:
6363
- Standard
6464
- Default
6565
- Prefix(github.com/d2iq-labs)
66-
- Prefix(github.com/d2iq-labs/capi-runtime-extensions)
66+
- Prefix(github.com/d2iq-labs/cluster-api-runtime-extensions-nutanix)
6767
gocritic:
6868
enabled-tags:
6969
- diagnostic

.goreleaser.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2023 D2iQ, Inc. All rights reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
project_name: capi-runtime-extensions
4+
project_name: cluster-api-runtime-extensions-nutanix
55

66
changelog:
77
use: github
@@ -44,7 +44,7 @@ before:
4444
- sed -i 's/\${/$${/g' runtime-extension-components.yaml
4545

4646
builds:
47-
- id: capi-runtime-extensions
47+
- id: cluster-api-runtime-extensions-nutanix
4848
dir: ./cmd
4949
env:
5050
- CGO_ENABLED=0
@@ -83,11 +83,11 @@ archives:
8383
- name_template: '{{ .ProjectName }}_v{{trimprefix .Version "v"}}_{{ .Os }}_{{ .Arch }}'
8484
rlcp: true
8585
builds:
86-
- capi-runtime-extensions
86+
- cluster-api-runtime-extensions-nutanix
8787

8888
kos:
89-
- id: capi-runtime-extensions
90-
build: capi-runtime-extensions
89+
- id: cluster-api-runtime-extensions-nutanix
90+
build: cluster-api-runtime-extensions-nutanix
9191
ldflags:
9292
- -s
9393
- -w
@@ -107,7 +107,7 @@ kos:
107107
platforms:
108108
- linux/amd64
109109
- linux/arm64
110-
repository: ghcr.io/d2iq-labs/capi-runtime-extensions
110+
repository: ghcr.io/d2iq-labs/cluster-api-runtime-extensions-nutanix
111111
bare: true
112112
tags:
113113
- v{{trimprefix .Version "v"}}

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ repos:
3232
name: addons-sync
3333
entry: make addons.sync
3434
language: system
35-
files: "^(hack/addons/|charts/capi-runtime-extensions/templates/.+/manifests/|make/addons.mk$)"
35+
files: "^(hack/addons/|charts/cluster-api-runtime-extensions-nutanix/templates/.+/manifests/|make/addons.mk$)"
3636
pass_filenames: false
3737
- repo: https://github.com/tekwizely/pre-commit-golang
3838
rev: v1.0.0-rc.1
@@ -67,7 +67,7 @@ repos:
6767
stages: [commit]
6868
- id: end-of-file-fixer
6969
stages: [commit]
70-
exclude: ^charts/capi-runtime-extensions/README.md$
70+
exclude: ^charts/cluster-api-runtime-extensions-nutanix/README.md$
7171
- repo: https://github.com/rhysd/actionlint
7272
rev: v1.6.25
7373
hooks:
@@ -117,7 +117,7 @@ repos:
117117
name: License headers - YAML and Makefiles
118118
stages: [commit]
119119
files: (^Makefile|\.(ya?ml|mk))$
120-
exclude: ^(pkg/handlers/.+/embedded|examples|charts/capi-runtime-extensions/defaultclusterclasses)/.+\.ya?ml|docs/static/helm/index\.yaml$
120+
exclude: ^(pkg/handlers/.+/embedded|examples|charts/cluster-api-runtime-extensions-nutanix/defaultclusterclasses)/.+\.ya?ml|docs/static/helm/index\.yaml$
121121
args:
122122
- --license-filepath
123123
- hack/license-header.txt

0 commit comments

Comments
 (0)