Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
linuxops
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
linuxsupport
websites
linuxops
Commits
6adb48c2
Commit
6adb48c2
authored
4 years ago
by
Ulrich Schwickerath
Browse files
Options
Downloads
Patches
Plain Diff
document untagging
parent
a0fd9ead
Branches
removing_tags
Branches containing commit
No related tags found
1 merge request
!67
document how to delete a tag
Pipeline
#2411528
passed
4 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/koji/deletetag.md
+16
-4
16 additions, 4 deletions
docs/koji/deletetag.md
with
16 additions
and
4 deletions
docs/koji/deletetag.md
+
16
−
4
View file @
6adb48c2
...
@@ -18,18 +18,30 @@ Please update the clone of this repo on lxsoftadm01:
...
@@ -18,18 +18,30 @@ Please update the clone of this repo on lxsoftadm01:
[
build@lxsoftadm01] git pull
[
build@lxsoftadm01] git pull
```
```
## Untag packages
## Untag packages
If there are any packages using these tags, it is better to untag them before removing the tag from KOJI.
If there are any packages using these tags, it is better to untag them before removing the tag from KOJI. To get the full list of tags use:
```
bash
koji list-tags
$DIST
-
*
```
where $DIST is to be replaced by the tag pattern to be removed.
For each of these tags, check if there are any corresponding builds, eg
```
bash
koji list-tagged
$DIST
-testing
```
Then untag each of the listed packages before proceeding with eg
```
bash
koji untag
$DIST
-testing
<package>
```
## Remove the tag from koji
## Remove the tag from koji
From lxsoftadm01 remove all related tags from koji
From lxsoftadm01 remove all related tags from koji
, eg
```
bash
```
bash
~
>
ssh build@lxsoftadm01
koji remove-tag
$DIST
-testing
koji remove-tag
$DIST
-testing
koji remove-tag
$DIST
-build
koji remove-tag
$DIST
-build
koji remove-tag
$DIST
-qa
koji remove-tag
$DIST
-qa
koji remove-tag
$DIST
-stable
koji remove-tag
$DIST
-stable
```
```
where
```$DIST```
is to be replaced by the tag to be removed.
where
again
```$DIST```
is to be replaced by the tag to be removed.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment