UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 95d28405 authored by andrew.greene's avatar andrew.greene Committed by Rob Mengert
Browse files

Docs: Create issue templates [SKIP INTEGRATION]

parent 54ed5188
No related branches found
No related tags found
1 merge request!17Resolve "Create issue templates" [SKIP INTEGRATION]
# Bug
## Quick Information
<!-- This is to help replicate the issue as closely as possible !-->
- **Kubevirt Chart Version:**
- **Kubevirt App Version:**
- **Other Environment Information:**
## What Happened? / Steps to reproduce
<!-- A brief description of what happened when you tried to perform an action !-->
## Expected result
<!-- What should have happened when you performed the actions !-->
## Screenshots / Logs / other relevant information
<!-- Any relevant data which show the issue !-->
## Priority/Severity
<!-- The priority and severity assigned may be different to this !-->
- [ ] High (anything that impacts the normal user flow or blocks app usage)
- [ ] Medium (anything that negatively affects the user experience)
- [ ] Low (anything else e.g., typos, missing icons, layout issues, etc.)
/label ~kind::bug ~"Big Bang Third Party" ~triage
\ No newline at end of file
# Feature Request
## Problem Statement
<!-- What is the issue being faced and needs addressing? !-->
## Benefits and risks
<!-- What benefits and risks have you considered, if any? !-->
## Proposed solution
<!-- How would you like to see this issue resolved? !-->
## Examples
<!-- Are there any examples of this which exist in other software? !-->
/label ~kind::feature ~"Big Bang Third Party" ~triage
\ No newline at end of file
# Question
/label ~question ~"Big Bang Third Party" ~triage
\ No newline at end of file
......@@ -6,6 +6,7 @@ Format: [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Update Kubevirt to v0.53.1
- Script written with skopeo in order to synchronize images between public locations and repo1
- Pipeline fixes
- issue templates, cleanup
## [0.1.3-alpha-bb.0] - 2022-06-24
- Initial Chart creation
\ No newline at end of file
......@@ -2,7 +2,7 @@ install:
helm install kv ./chart --create-namespace --namespace kubevirt
move-images:
scripts/move-images.sh
utils/registrySync.sh
update-chart:
scripts/update-chart.sh
......
# kubevirt
![Version: 0.1.3-alpha-bb.4](https://img.shields.io/badge/Version-0.1.3--alpha--bb.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.53.1](https://img.shields.io/badge/AppVersion-0.53.1-informational?style=flat-square)
![Version: 0.1.3-alpha-bb.5](https://img.shields.io/badge/Version-0.1.3--alpha--bb.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.53.1](https://img.shields.io/badge/AppVersion-0.53.1-informational?style=flat-square)
KubeVirt Big Bang package
......@@ -43,4 +43,4 @@ helm install kubevirt chart/
## Contributing
Please see the [contributing guide](./CONTRIBUTING.md) if you are interested in contributing.
\ No newline at end of file
Please see the [contributing guide](./CONTRIBUTING.md) if you are interested in contributing.
......@@ -2,5 +2,5 @@ apiVersion: v2
name: kubevirt
description: KubeVirt Big Bang package
type: application
version: 0.1.3-alpha-bb.4
version: 0.1.3-alpha-bb.5
appVersion: "0.53.1"
#!/bin/bash
# Image Info
export IMGSRC_REPO=quay.io
export IMGSRC_PROJ=kubevirt
export IMGDST_REPO=registry.dso.mil
export IMGDST_PROJ=platform-one/big-bang/apps/third-party/kubevirt
export IMGTAG=v0.53.1
function pullTagPush() {
export IMGNAME=$1
docker pull $IMGSRC_REPO/$IMGSRC_PROJ/$IMGNAME:$IMGTAG
docker tag $IMGSRC_REPO/$IMGSRC_PROJ/$IMGNAME:$IMGTAG $IMGDST_REPO/$IMGDST_PROJ/$IMGNAME:$IMGTAG
docker login $IMGDST_REPO
docker push $IMGDST_REPO/$IMGDST_PROJ/$IMGNAME:$IMGTAG
}
pullTagPush virt-api
pullTagPush virt-launcher
pullTagPush virt-handler
pullTagPush virt-operator
pullTagPush virt-controller
\ No newline at end of file
......@@ -3,11 +3,13 @@
curl -sS -O https://repo1.dso.mil/platform-one/big-bang/apps/library-charts/gluon/-/raw/master/docs/README.md.gotmpl
curl -sS -O https://repo1.dso.mil/platform-one/big-bang/apps/library-charts/gluon/-/raw/master/docs/.helmdocsignore
curl -sS -O https://repo1.dso.mil/platform-one/big-bang/apps/library-charts/gluon/-/raw/master/docs/_templates.gotmpl
# Update to your helm-docs binary path
/usr/local/bin/helm-docs -s file -t `pwd`/README.md.gotmpl --dry-run > README.md
# Update to your helm-docs binary path (v1.10.0)
/usr/local/bin/helm-docs -s file -t `pwd`/README.md.gotmpl -t `pwd`/_templates.gotmpl --dry-run > README.md
# Uncomment to use docker
# docker run --rm -v "`pwd`:/helm-docs" -u $(id -u) jnorwood/helm-docs:v1.5.0 -s file -t /helm-docs/README.md.gotmpl --dry-run > README.md
# docker run --rm -v "`pwd`:/helm-docs" -u $(id -u) jnorwood/helm-docs:v1.10.0 -s file -t /helm-docs/README.md.gotmpl -t /helm-docs/_templates.gotmpl --dry-run > README.md
rm README.md.gotmpl .helmdocsignore
rm .helmdocsignore README.md.gotmpl _templates.gotmpl
git add README.md
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment