account for move of repo from vmware-tanzu to vmware on GitHub

This commit is contained in:
Ryan Richard
2025-08-02 15:01:00 -07:00
parent f09c89dd43
commit 0981780d6a
9 changed files with 22 additions and 22 deletions

View File

@@ -1 +1 @@
Please see https://github.com/vmware-tanzu/pinniped/blob/main/CODE_OF_CONDUCT.md
Please see https://github.com/vmware/pinniped/blob/main/CODE_OF_CONDUCT.md

View File

@@ -1 +1 @@
Please see https://github.com/vmware-tanzu/pinniped/blob/main/CONTRIBUTING.md
Please see https://github.com/vmware/pinniped/blob/main/CONTRIBUTING.md

View File

@@ -1 +1 @@
Please see https://github.com/vmware-tanzu/pinniped/blob/main/MAINTAINERS.md
Please see https://github.com/vmware/pinniped/blob/main/MAINTAINERS.md

View File

@@ -1,6 +1,6 @@
# Pinniped's `ci` branch
This `ci` branch contains the CI/CD tooling for [Pinniped](https://github.com/vmware-tanzu/pinniped).
This `ci` branch contains the CI/CD tooling for [Pinniped](https://github.com/vmware/pinniped).
The documentation and code in this branch is mainly intended for the maintainers of Pinniped.
@@ -13,20 +13,20 @@ for these files was not copied from the private repository at the time of this m
## Reporting an issue in this branch
Found a bug or would like to make an enhancement request?
Please report issues in [this repo](https://github.com/vmware-tanzu/pinniped).
Please report issues in [this repo](https://github.com/vmware/pinniped).
## Reporting security vulnerabilities
Please follow the procedure described in [SECURITY.md](https://github.com/vmware-tanzu/pinniped/blob/main/SECURITY.md).
Please follow the procedure described in [SECURITY.md](https://github.com/vmware/pinniped/blob/main/SECURITY.md).
## Creating a release
When the team is preparing to ship a release, a maintainer will create a new
GitHub [Issue](https://github.com/vmware-tanzu/pinniped/issues/new/choose) in this repo to
GitHub [Issue](https://github.com/vmware/pinniped/issues/new/choose) in this repo to
collaboratively track progress on the release checklist. As tasks are completed,
the team will check them off. When all the tasks are completed, the issue is closed.
The release checklist is committed to this repo as an [issue template](https://github.com/vmware-tanzu/pinniped/tree/main/.github/ISSUE_TEMPLATE/release_checklist.md).
The release checklist is committed to this repo as an [issue template](https://github.com/vmware/pinniped/tree/main/.github/ISSUE_TEMPLATE/release_checklist.md).
## Pipelines
@@ -115,7 +115,7 @@ Some pipelines use github [webhooks to trigger resource checks](https://concours
rather than the default of polling every minute, to make these pipelines more responsive and use fewer compute resources
for running checks. Refer to places where `webhook_token` is configured in various `pipeline.yml` files.
To make these webhooks work, they must be defined on the [GitHub repo's settings](https://github.com/vmware-tanzu/pinniped/settings/hooks).
To make these webhooks work, they must be defined on the [GitHub repo's settings](https://github.com/vmware/pinniped/settings/hooks).
## Installing and operating Concourse

View File

@@ -1 +1 @@
Please see https://github.com/vmware-tanzu/pinniped/blob/main/SECURITY.md
Please see https://github.com/vmware/pinniped/blob/main/SECURITY.md

View File

@@ -1,11 +1,11 @@
#!/usr/bin/env bash
# Copyright 2020-2024 the Pinniped contributors. All Rights Reserved.
# Copyright 2020-2025 the Pinniped contributors. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
set -euo pipefail
repo=vmware-tanzu/pinniped
repo=vmware/pinniped
current_branch_name=$(git rev-parse --abbrev-ref HEAD)
if [[ "$current_branch_name" != "ci" ]]; then

View File

@@ -561,7 +561,7 @@ resources:
icon: github
check_every: 5m
source:
owner: vmware-tanzu
owner: vmware
repository: pinniped
access_token: ((ci-bot-access-token-with-public-repo-write-permission))
drafts: true
@@ -571,7 +571,7 @@ resources:
icon: github
check_every: 5m
source:
owner: vmware-tanzu
owner: vmware
repository: pinniped
access_token: ((ci-bot-access-token-with-public-repo-write-permission))
@@ -736,9 +736,9 @@ jobs:
# Also note that the GitHub UI says: "To connect a repository to your container image, the namespace
# for the repository and container image on GitHub must be the same. For example, they should be owned by
# the same user or organization." So these would only show in the GitHub UI for a package owned by the
# vmware-tanzu org.
# vmware org.
# It is not clear if dockerhub will pay any attention to these labels for its UI. It doesn't seem to.
LABEL_org.opencontainers.image.source: "https://github.com/vmware-tanzu/pinniped"
LABEL_org.opencontainers.image.source: "https://github.com/vmware/pinniped"
LABEL_org.opencontainers.image.licenses: "Apache-2.0"
LABEL_org.opencontainers.image.description: "The official container images of https://pinniped.dev"
- put: ci-build-image
@@ -2674,7 +2674,7 @@ jobs:
params:
SOURCE_REPOSITORY_USERNAME: ((ci-ghcr-puller-username))
SOURCE_REPOSITORY_PASSWORD: ((ci-ghcr-puller-token))
DESTINATION_REPOSITORY: ghcr.io/vmware-tanzu/pinniped/pinniped-server
DESTINATION_REPOSITORY: ghcr.io/vmware/pinniped/pinniped-server
DESTINATION_TAG: latest # note that we will also choose more tags based on the release-info output from the task above
DESTINATION_REPOSITORY_USERNAME: ((ci-ghcr-pusher-username))
DESTINATION_REPOSITORY_PASSWORD: ((ci-ghcr-pusher-token))
@@ -2683,7 +2683,7 @@ jobs:
image: deployment-yaml-formatter-image
params:
# Specify the repo to render into the YAML files. The task will ask the registry for the image digest using the release tag.
IMAGE_REPO: ghcr.io/vmware-tanzu/pinniped/pinniped-server
IMAGE_REPO: ghcr.io/vmware/pinniped/pinniped-server
- put: github-release
inputs:
- release-semver

View File

@@ -56,7 +56,7 @@ resources:
type: git
icon: github
source:
uri: https://github.com/vmware-tanzu/pinniped.git
uri: https://github.com/vmware/pinniped.git
branch: main
- name: pinniped-ci
@@ -72,7 +72,7 @@ resources:
icon: docker
check_every: 10m
source:
repository: ghcr.io/vmware-tanzu/pinniped/pinniped-server
repository: ghcr.io/vmware/pinniped/pinniped-server
tag: latest
- name: pinniped-latest-main-image

View File

@@ -43,7 +43,7 @@ run:
| Image | Registry |
| -------------- | ------------- |
| \`ghcr.io/vmware-tanzu/pinniped/pinniped-server:$THIS_VERSION\` | GitHub Container Registry |
| \`ghcr.io/vmware/pinniped/pinniped-server:$THIS_VERSION\` | GitHub Container Registry |
| \`docker.io/getpinniped/pinniped-server:$THIS_VERSION\` | DockerHub |
These images can also be referenced by their digest: \`$(cat ci-build-image/digest)\`.
@@ -67,7 +67,7 @@ run:
### Diffs
*TODO*: Make sure the following references the correct version tags. Note that the link will not work until the release is published (made public):<br/>
A complete list of changes can be found [here](https://github.com/vmware-tanzu/pinniped/compare/$PREVIOUS_VERSION...$THIS_VERSION).
A complete list of changes can be found [here](https://github.com/vmware/pinniped/compare/$PREVIOUS_VERSION...$THIS_VERSION).
## Acknowledgements