Skip to content
This repository was archived by the owner on Apr 17, 2025. It is now read-only.

Commit d8c7fef

Browse files
committed
Fix all links/directories
1 parent dc62c8d commit d8c7fef

Some content is hidden

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

62 files changed

+162
-163
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
**/*.eml
1414
*.ipr
1515
*.iws
16+
*.yaml-e

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ build: generate fmt vet manifests
103103
go build -o bin/manager ./cmd/manager/main.go
104104
GOOS=linux GOARCH=amd64 go build \
105105
-o bin/kubectl/kubectl-hns_linux_amd64 \
106-
-ldflags="-X sigs.k8s.io/multi-tenancy/incubator/hnc/internal/version.Version=${HNC_IMG_TAG}" \
106+
-ldflags="-X sigs.k8s.io/hierarchical-namespaces/internal/version.Version=${HNC_IMG_TAG}" \
107107
./cmd/kubectl/main.go
108108
GOOS=darwin GOARCH=amd64 go build \
109109
-o bin/kubectl/kubectl-hns_darwin_amd64 \
110-
-ldflags="-X sigs.k8s.io/multi-tenancy/incubator/hnc/internal/version.Version=${HNC_IMG_TAG}" \
110+
-ldflags="-X sigs.k8s.io/hierarchical-namespaces/internal/version.Version=${HNC_IMG_TAG}" \
111111
./cmd/kubectl/main.go
112112

113113
# Clean all binaries (manager and kubectl)
@@ -348,7 +348,7 @@ release: check-release-env
348348
@echo "Releasing ${HNC_RELEASE_IMG}"
349349
@echo "... override with HNC_RELEASE_REGISTRY, HNC_IMG_NAME and"
350350
@echo "... HNC_IMG_TAG."
351-
@echo "Pulling from Github multi-tenancy repo owned by ${HNC_RELEASE_REPO_OWNER}"
351+
@echo "Pulling from Github hierarchical-namespaces repo owned by ${HNC_RELEASE_REPO_OWNER}"
352352
@echo "... override with HNC_RELEASE_REPO_OWNER"
353353
@echo "GCP project: ${PROJECT_ID} (obtained from gcloud)"
354354
@echo "Temporary build image (must be in ${PROJECT_ID}): ${HNC_IMG}"

PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: "2"
22
domain: x-k8s.io
3-
repo: github.com/kubernetes-sigs/multi-tenancy
3+
repo: github.com/kubernetes-sigs/hierarchical-namespaces
44
resources:
55
- group: hnc
66
version: v1alpha1

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ All HNC issues are assigned to an HNC milestone. So far, the following
5454
milestones are defined or planned:
5555

5656
* v1.0 - Likely late Q2 or early Q3 2021: HNC recommended for production use
57-
* [v0.9](https://github.com/kubernetes-sigs/multi-tenancy/milestone/21): move
57+
* [v0.9](https://github.com/kubernetes-sigs/hierarchical-namespaces/milestone/21): move
5858
HNC to its own repo; continued stability improvements.
5959
* [v0.8 - COMPLETE APR 2021](https://github.com/kubernetes-sigs/multi-tenancy/milestone/20):
6060
incremental stability improvements
@@ -73,7 +73,7 @@ milestones are defined or planned:
7373
* [v0.1 - COMPLETE NOV 2019](https://github.com/kubernetes-sigs/multi-tenancy/milestone/7):
7474
an initial release with all basic functionality so you can play with it, but
7575
not suitable for any real workloads.
76-
* [Backlog](https://github.com/kubernetes-sigs/multi-tenancy/milestone/9):
76+
* [Backlog](https://github.com/kubernetes-sigs/hierarchical-namespaces/milestone/9):
7777
all unscheduled work.
7878

7979
## Contributing to HNC
@@ -158,8 +158,6 @@ cycle looks like the following:
158158
stored on Github) or the _full_ path to the local manifests. If these are
159159
not set, we'll skip any tests that include modifying the HNC deployement,
160160
e.g. to bypass webhooks.
161-
- If you deploy to Kind, the tests that use Network Policies may fail. See
162-
https://github.com/kubernetes-sigs/multi-tenancy/issues/1098.
163161
- Once you're ready to make a pull request, please follow the following
164162
instructions:
165163
- Each PR should contain _one commit_. If you have multiple commits (either
@@ -168,7 +166,7 @@ cycle looks like the following:
168166
any changes to your fork of this repo.
169167
- Ensure your commit message includes a "Tested:" section explaining in
170168
reasonable detail what you did to test your change.
171-
[Here](https://github.com/kubernetes-sigs/multi-tenancy/commit/ce983662e87264c76f92dbfbab7cef7bd6128837)
169+
[Here](https://github.com/kubernetes-sigs/hierarchical-namespaces/commit/ce983662e87264c76f92dbfbab7cef7bd6128837)
172170
is a good example. A minimal message might be something like "Added new
173171
test; verified that the test failed before my change and passed after it;
174172
ran e2e tests."

api/v1alpha2/hnc_config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ type HNCConfigurationSpec struct {
144144
// Note that 'roles' and 'rolebindings' are pre-configured by HNC with
145145
// 'Propagate' mode and are omitted in the spec. Any configuration of 'roles'
146146
// or 'rolebindings' are not allowed. To learn more, see
147-
// https://github.com/kubernetes-sigs/multi-tenancy/blob/master/incubator/hnc/docs/user-guide/how-to.md#admin-types
147+
// https://github.com/kubernetes-sigs/hierarchical-namespaces/blob/master/docs/user-guide/how-to.md#admin-types
148148
Resources []ResourceSpec `json:"resources,omitempty"`
149149
}
150150

@@ -157,7 +157,7 @@ type HNCConfigurationStatus struct {
157157
// "ActivitiesHalted" reason, this means that HNC cannot function in the
158158
// affected namespaces. The HierarchyConfiguration object in each of the
159159
// affected namespaces will have more information. To learn more about
160-
// conditions, see https://github.com/kubernetes-sigs/multi-tenancy/blob/master/incubator/hnc/docs/user-guide/concepts.md#admin-conditions.
160+
// conditions, see https://github.com/kubernetes-sigs/hierarchical-namespaces/blob/master/docs/user-guide/concepts.md#admin-conditions.
161161
Conditions []Condition `json:"conditions,omitempty"`
162162
}
163163

cloudbuild.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ steps:
77
- '-c'
88
- |
99
set -e
10-
echo Cloning from https://github.com/$_HNC_REPO_OWNER/multi-tenancy
11-
git clone https://github.com/$_HNC_REPO_OWNER/multi-tenancy
12-
cd multi-tenancy
10+
echo Cloning from https://github.com/$_HNC_REPO_OWNER/hierarchical-namespaces
11+
git clone https://github.com/$_HNC_REPO_OWNER/hierarchical-namespaces
12+
cd hierarchical-namespaces
1313
echo Checking out hnc-$_HNC_IMG_TAG
1414
git checkout hnc-$_HNC_IMG_TAG
1515
# Build the manifests and the kubectl plugin
@@ -19,7 +19,7 @@ steps:
1919
- '-c'
2020
- |
2121
set -e
22-
cd multi-tenancy/incubator/hnc
22+
cd hierarchical-namespaces
2323
export HNC_REGISTRY=$_HNC_REGISTRY
2424
export HNC_IMG_NAME=$_HNC_IMG_NAME
2525
export HNC_IMG_TAG=$_HNC_IMG_TAG
@@ -35,10 +35,10 @@ steps:
3535
- '-H'
3636
- 'Content-Type: application/x-application'
3737
- '--data-binary'
38-
- '@multi-tenancy/incubator/hnc/manifests/hnc-manager.yaml'
38+
- '@hierarchical-namespaces/manifests/hnc-manager.yaml'
3939
- '-u'
4040
- '$_HNC_USER:$_HNC_PERSONAL_ACCESS_TOKEN'
41-
- 'https://uploads.github.com/repos/$_HNC_REPO_OWNER/multi-tenancy/releases/$_HNC_RELEASE_ID/assets?name=hnc-manager.yaml'
41+
- 'https://uploads.github.com/repos/$_HNC_REPO_OWNER/hierarchical-namespaces/releases/$_HNC_RELEASE_ID/assets?name=hnc-manager.yaml'
4242
# Upload plugin (Linux)
4343
- name: gcr.io/cloud-builders/curl
4444
args:
@@ -47,10 +47,10 @@ steps:
4747
- '-H'
4848
- 'Content-Type: application/x-application'
4949
- '--data-binary'
50-
- '@multi-tenancy/incubator/hnc/bin/kubectl/kubectl-hns_linux_amd64'
50+
- '@hierarchical-namespaces/bin/kubectl/kubectl-hns_linux_amd64'
5151
- '-u'
5252
- '$_HNC_USER:$_HNC_PERSONAL_ACCESS_TOKEN'
53-
- 'https://uploads.github.com/repos/$_HNC_REPO_OWNER/multi-tenancy/releases/$_HNC_RELEASE_ID/assets?name=kubectl-hns_linux_amd64'
53+
- 'https://uploads.github.com/repos/$_HNC_REPO_OWNER/hierarchical-namespaces/releases/$_HNC_RELEASE_ID/assets?name=kubectl-hns_linux_amd64'
5454
# Upload plugin (Darwin)
5555
- name: gcr.io/cloud-builders/curl
5656
args:
@@ -59,10 +59,10 @@ steps:
5959
- '-H'
6060
- 'Content-Type: application/x-application'
6161
- '--data-binary'
62-
- '@multi-tenancy/incubator/hnc/bin/kubectl/kubectl-hns_darwin_amd64'
62+
- '@hierarchical-namespaces/bin/kubectl/kubectl-hns_darwin_amd64'
6363
- '-u'
6464
- '$_HNC_USER:$_HNC_PERSONAL_ACCESS_TOKEN'
65-
- 'https://uploads.github.com/repos/$_HNC_REPO_OWNER/multi-tenancy/releases/$_HNC_RELEASE_ID/assets?name=kubectl-hns_darwin_amd64'
65+
- 'https://uploads.github.com/repos/$_HNC_REPO_OWNER/hierarchical-namespaces/releases/$_HNC_RELEASE_ID/assets?name=kubectl-hns_darwin_amd64'
6666
# Upload plugin (Krew tar file)
6767
- name: gcr.io/cloud-builders/curl
6868
args:
@@ -71,10 +71,10 @@ steps:
7171
- '-H'
7272
- 'Content-Type: application/x-application'
7373
- '--data-binary'
74-
- '@multi-tenancy/incubator/hnc/bin/kubectl-hns.tar.gz'
74+
- '@hierarchical-namespaces/bin/kubectl-hns.tar.gz'
7575
- '-u'
7676
- '$_HNC_USER:$_HNC_PERSONAL_ACCESS_TOKEN'
77-
- 'https://uploads.github.com/repos/$_HNC_REPO_OWNER/multi-tenancy/releases/$_HNC_RELEASE_ID/assets?name=kubectl-hns.tar.gz'
77+
- 'https://uploads.github.com/repos/$_HNC_REPO_OWNER/hierarchical-namespaces/releases/$_HNC_RELEASE_ID/assets?name=kubectl-hns.tar.gz'
7878
# Upload plugin (Krew manifest file - to add to the Krew index)
7979
- name: gcr.io/cloud-builders/curl
8080
args:
@@ -83,12 +83,12 @@ steps:
8383
- '-H'
8484
- 'Content-Type: application/x-application'
8585
- '--data-binary'
86-
- '@multi-tenancy/incubator/hnc/manifests/krew-kubectl-hns.yaml'
86+
- '@hierarchical-namespaces/manifests/krew-kubectl-hns.yaml'
8787
- '-u'
8888
- '$_HNC_USER:$_HNC_PERSONAL_ACCESS_TOKEN'
89-
- 'https://uploads.github.com/repos/$_HNC_REPO_OWNER/multi-tenancy/releases/$_HNC_RELEASE_ID/assets?name=krew-kubectl-hns.yaml'
89+
- 'https://uploads.github.com/repos/$_HNC_REPO_OWNER/hierarchical-namespaces/releases/$_HNC_RELEASE_ID/assets?name=krew-kubectl-hns.yaml'
9090
# Build Docker image
9191
- name: gcr.io/cloud-builders/docker
92-
args: ['build', '-t', 'gcr.io/$PROJECT_ID/$_HNC_IMG_NAME:$_HNC_IMG_TAG', 'multi-tenancy/incubator/hnc']
92+
args: ['build', '-t', 'gcr.io/$PROJECT_ID/$_HNC_IMG_NAME:$_HNC_IMG_TAG', 'hierarchical-namespaces']
9393

9494
images: ['gcr.io/$PROJECT_ID/$_HNC_IMG_NAME:$_HNC_IMG_TAG']

cmd/kubectl/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ limitations under the License.
1616
package main
1717

1818
import (
19-
"sigs.k8s.io/multi-tenancy/incubator/hnc/internal/kubectl"
19+
"sigs.k8s.io/hierarchical-namespaces/internal/kubectl"
2020
)
2121

2222
func main() {

cmd/manager/main.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ import (
3838

3939
// +kubebuilder:scaffold:imports
4040

41-
v1a2 "sigs.k8s.io/multi-tenancy/incubator/hnc/api/v1alpha2"
42-
"sigs.k8s.io/multi-tenancy/incubator/hnc/internal/config"
43-
"sigs.k8s.io/multi-tenancy/incubator/hnc/internal/forest"
44-
"sigs.k8s.io/multi-tenancy/incubator/hnc/internal/reconcilers"
45-
"sigs.k8s.io/multi-tenancy/incubator/hnc/internal/stats"
46-
"sigs.k8s.io/multi-tenancy/incubator/hnc/internal/validators"
41+
v1a2 "sigs.k8s.io/hierarchical-namespaces/api/v1alpha2"
42+
"sigs.k8s.io/hierarchical-namespaces/internal/config"
43+
"sigs.k8s.io/hierarchical-namespaces/internal/forest"
44+
"sigs.k8s.io/hierarchical-namespaces/internal/reconcilers"
45+
"sigs.k8s.io/hierarchical-namespaces/internal/stats"
46+
"sigs.k8s.io/hierarchical-namespaces/internal/validators"
4747
)
4848

4949
var (

config/crd/bases/hnc.x-k8s.io_hncconfigurations.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ spec:
3939
description: HNCConfigurationSpec defines the desired state of HNC configuration.
4040
properties:
4141
resources:
42-
description: Resources defines the cluster-wide settings for resource synchronization. Note that 'roles' and 'rolebindings' are pre-configured by HNC with 'Propagate' mode and are omitted in the spec. Any configuration of 'roles' or 'rolebindings' are not allowed. To learn more, see https://github.com/kubernetes-sigs/multi-tenancy/blob/master/incubator/hnc/docs/user-guide/how-to.md#admin-types
42+
description: Resources defines the cluster-wide settings for resource synchronization. Note that 'roles' and 'rolebindings' are pre-configured by HNC with 'Propagate' mode and are omitted in the spec. Any configuration of 'roles' or 'rolebindings' are not allowed. To learn more, see https://github.com/kubernetes-sigs/hierarchical-namespaces/blob/master/docs/user-guide/how-to.md#admin-types
4343
items:
4444
description: ResourceSpec defines the desired synchronization state of a specific resource.
4545
properties:
@@ -65,7 +65,7 @@ spec:
6565
description: HNCConfigurationStatus defines the observed state of HNC configuration.
6666
properties:
6767
conditions:
68-
description: Conditions describes the errors, if any. If there are any conditions with "ActivitiesHalted" reason, this means that HNC cannot function in the affected namespaces. The HierarchyConfiguration object in each of the affected namespaces will have more information. To learn more about conditions, see https://github.com/kubernetes-sigs/multi-tenancy/blob/master/incubator/hnc/docs/user-guide/concepts.md#admin-conditions.
68+
description: Conditions describes the errors, if any. If there are any conditions with "ActivitiesHalted" reason, this means that HNC cannot function in the affected namespaces. The HierarchyConfiguration object in each of the affected namespaces will have more information. To learn more about conditions, see https://github.com/kubernetes-sigs/hierarchical-namespaces/blob/master/docs/user-guide/concepts.md#admin-conditions.
6969
items:
7070
description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }"
7171
properties:

docs/links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ This file contains links to all the HNC documents (sorted by last updated).
77
- [2019/12] [HNC CLI naming](http://bit.ly/hnc-cli-naming)
88
- [2020/01] [HNC self-service namespaces UX](http://bit.ly/hnc-self-serve-ux)
99
- [2020/01] [HNC type configuration](http://bit.ly/hnc-type-configuration)
10-
- [2020/02] [Metrics user guide: Stackdriver on GKE](https://github.com/kubernetes-sigs/multi-tenancy/blob/master/incubator/hnc/doc/metrics/stackdriver-gke.md)
10+
- [2020/02] [Metrics user guide: Stackdriver on GKE](https://github.com/kubernetes-sigs/hierarchical-namespaces/blob/master/doc/metrics/stackdriver-gke.md)
1111
- [2020/07] [HNC v1alpha2 API Proposal](http://bit.ly/hnc_v1alpha2)
1212
- [2020/11] [HNC Quickstart](https://bit.ly/hnc-quickstart)

docs/releasing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ this for you.
7272
Set the following environment variables:
7373

7474
```bash
75-
export MT_ENDPOINT=https://api.github.com/repos/kubernetes-sigs/multi-tenancy
75+
export MT_ENDPOINT=https://api.github.com/repos/kubernetes-sigs/hierarchical-namespaces
7676
export HNC_USER=<your github name>
7777
export HNC_PAT=<your personal access token>
7878
export HNC_IMG_TAG=<the semantic version, eg v0.1.0-rc1>
@@ -197,7 +197,7 @@ vars:
197197

198198
* `HNC_RELEASE_REPO_OWNER`: this is the Github repo owner - default is
199199
`kubernetes-sigs`, replace with your name (e.g. `adrianludwin`). The
200-
`multi-tenancy` repo name is hardcoded and can't be changed.
200+
`hierarchical-namespaces` repo name is hardcoded and can't be changed.
201201
* `HNC_RELEASE_REGISTRY`: default is `gcr.io/k8s-staging-multitenancy`, replace
202202
with your own registry (eg `gcr.io/adrians-project`).
203203

docs/user-guide/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ see below.
2525

2626
## Older user guides
2727

28-
* [HNC v0.6](https://github.com/kubernetes-sigs/multi-tenancy/tree/hnc-v0.6/incubator/hnc/docs/user-guide)
29-
* [HNC v0.5](https://github.com/kubernetes-sigs/multi-tenancy/tree/hnc-v0.5/incubator/hnc/docs/user-guide)
30-
* [HNC v0.4](https://github.com/kubernetes-sigs/multi-tenancy/tree/hnc-v0.4/incubator/hnc/docs/user-guide)
28+
* [HNC v0.6](https://github.com/kubernetes-sigs/multi-tenancy/tree/hnc-v0.6/docs/user-guide)
29+
* [HNC v0.5](https://github.com/kubernetes-sigs/multi-tenancy/tree/hnc-v0.5/docs/user-guide)
30+
* [HNC v0.4](https://github.com/kubernetes-sigs/multi-tenancy/tree/hnc-v0.4/docs/user-guide)
3131
* [HNC v0.3](https://docs.google.com/document/d/1XVVv1ha4j1WUaszu3mmlACeWPUJXbJhA6zntxswrsco)

docs/user-guide/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Please feel free to suggest additional questions.
77

88
You can contact us on:
99

10-
* [Github issues](https://github.com/kubernetes-sigs/multi-tenancy/issues)
10+
* [Github issues](https://github.com/kubernetes-sigs/hierarchical-namespaces/issues)
1111
* [Google Groups mailing list](https://groups.google.com/forum/#!forum/kubernetes-wg-multitenancy)
1212
* [#wg-multitenancy on Slack](https://kubernetes.slack.com/messages/wg-multitenancy)
1313

docs/user-guide/how-to.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ relationships and configuration settings:
494494
kubectl get crds | grep .hnc.x-k8s.io | awk '{print $1}' | xargs kubectl delete crd
495495

496496
# Delete the rest of HNC.
497-
kubectl delete -f https://github.com/kubernetes-sigs/multi-tenancy/releases/download/hnc-${HNC_VERSION}/hnc-manager.yaml
497+
kubectl delete -f https://github.com/kubernetes-sigs/hierarchical-namespaces/releases/download/hnc-${HNC_VERSION}/hnc-manager.yaml
498498
```
499499

500500
<a name="admin-excluded-namespaces"/>
@@ -722,7 +722,7 @@ edit the `config` object directly, which will bypass this protection.
722722

723723
HNC makes the following metrics available, and can be monitored via Stackdriver
724724
(next section) or Prometheus (experimental - see
725-
[#433](https://github.com/kubernetes-sigs/multi-tenancy/issues/433)).
725+
[#433](https://github.com/kubernetes-sigs/hierarchical-namespaces/issues/433)).
726726

727727
Our [best practices guide](best-practices.md#health) can help you use these
728728
metrics to ensure that HNC stays healthy.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module sigs.k8s.io/multi-tenancy/incubator/hnc
1+
module sigs.k8s.io/hierarchical-namespaces
22

33
go 1.14
44

hack/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ PROW_TMP := $(shell mktemp -d)
1717
# and that's probably good enough for us.
1818
#
1919
# Please keep this in sync with
20-
# https://github.com/kubernetes/test-infra/tree/master/config/jobs/kubernetes-sigs/wg-multi-tenancy/hnc-e2e.yaml.
20+
# https://github.com/kubernetes/test-infra/tree/master/config/jobs/kubernetes-sigs/hierarchical-namespaces/hnc-e2e.yaml.
2121
# Also, when you do this, please also upgrade the version of Kind we download
2222
# in prow-run-e2e.sh in this directory.
2323
PROW_IMG ?= gcr.io/k8s-testimages/krte:v20210129-3799a64-master
@@ -33,10 +33,10 @@ prow-test:
3333
@echo ~~~ Preparing to test prow-run-e2e.sh ~~~
3434
@echo
3535
@echo Cloning the repo
36-
git clone https://github.com/kubernetes-sigs/multi-tenancy ${PROW_TMP}
36+
git clone https://github.com/kubernetes-sigs/hierarchical-namespaces ${PROW_TMP}
3737
@echo
3838
@echo Copying run-e2e-tests in this directory to the synced directory
39-
cp -p ./prow-run-e2e.sh ${PROW_TMP}/incubator/hnc/hack
39+
cp -p ./prow-run-e2e.sh ${PROW_TMP}/hack
4040
@echo
4141
@echo ~~~ Testing prow-run-e2e.sh in KRTE ~~~
4242
@echo
@@ -48,7 +48,7 @@ prow-test:
4848
--network="host" \
4949
-it \
5050
${PROW_IMG} \
51-
/local-test-start-dir/incubator/hnc/hack/prow-run-e2e.sh
51+
/local-test-start-dir/hack/prow-run-e2e.sh
5252

5353
# After calling 'make prow-test', the Kind cluster might still be present on the
5454
# *host* even though the Docker container has exited. Run this to find and

hack/krew-kubectl-hns.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ spec:
2121
version: HNC_IMG_TAG
2222
caveats: |
2323
This plugin requires the most recent minor version of HNC on your cluster. Get it at:
24-
https://github.com/kubernetes-sigs/multi-tenancy/releases/tag/hnc-HNC_IMG_TAG
24+
https://github.com/kubernetes-sigs/hierarchical-namespaces/releases/tag/hnc-HNC_IMG_TAG
2525
or via:
26-
kubectl apply -f https://github.com/kubernetes-sigs/multi-tenancy/releases/download/hnc-HNC_IMG_TAG/hnc-manager.yaml
26+
kubectl apply -f https://github.com/kubernetes-sigs/hierarchical-namespaces/releases/download/hnc-HNC_IMG_TAG/hnc-manager.yaml
2727
2828
This version of the plugin should work with HNC v0.6 and later - but for
2929
best results, use the version that matches the version of HNC on your
@@ -36,9 +36,9 @@ spec:
3636
* Only RBAC Roles and RoleBindings are propagated by default, but you can configure more.
3737
3838
The user guide contains much more information.
39-
homepage: https://github.com/HNC_RELEASE_REPO_OWNER/multi-tenancy/tree/master/incubator/hnc/docs/user-guide
39+
homepage: https://github.com/HNC_RELEASE_REPO_OWNER/hierarchical-namespaces/tree/master/docs/user-guide
4040
platforms:
41-
- uri: https://github.com/HNC_RELEASE_REPO_OWNER/multi-tenancy/releases/download/hnc-HNC_IMG_TAG/kubectl-hns.tar.gz
41+
- uri: https://github.com/HNC_RELEASE_REPO_OWNER/hierarchical-namespaces/releases/download/hnc-HNC_IMG_TAG/kubectl-hns.tar.gz
4242
selector:
4343
matchLabels:
4444
os: linux
@@ -50,7 +50,7 @@ spec:
5050
- from: "bin/kubectl/LICENSE"
5151
to: "."
5252
bin: "./kubectl-hns_linux_amd64"
53-
- uri: https://github.com/HNC_RELEASE_REPO_OWNER/multi-tenancy/releases/download/hnc-HNC_IMG_TAG/kubectl-hns.tar.gz
53+
- uri: https://github.com/HNC_RELEASE_REPO_OWNER/hierarchical-namespaces/releases/download/hnc-HNC_IMG_TAG/kubectl-hns.tar.gz
5454
selector:
5555
matchLabels:
5656
os: darwin

0 commit comments

Comments
 (0)