From d52fd1b8bdb2526df5480c94d896b3ba83516b3c Mon Sep 17 00:00:00 2001 From: Michael McLeroy <michaelmcleroy@cloudfitsoftware.com> Date: Thu, 12 Jan 2023 16:36:12 -0500 Subject: [PATCH] chore: move image to pull from upstream --- CHANGELOG.md | 4 +++ README.md | 77 ++--------------------------------------------- chart/Chart.yaml | 2 +- chart/values.yaml | 2 +- 4 files changed, 8 insertions(+), 77 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffd2865..88e79a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ > Format: [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) --- +## [6.0.0-bb.7] - 2023-01-12 +### Changed +- Update image to pull from ghcr.io + ## [6.0.0-bb.6] - 2022-06-28 ### Changed - Updated bb base to 2.0.0 diff --git a/README.md b/README.md index 2b9404e..70a62fd 100644 --- a/README.md +++ b/README.md @@ -1,79 +1,6 @@ -# flux-podinfo - -   - -Flux compatible Helm chart for podinfo - -## Learn More -* [Application Overview](docs/overview.md) -* [Other Documentation](docs/) - -## Pre-Requisites - -* Kubernetes Cluster deployed -* Kubernetes config installed in `~/.kube/config` -* Helm installed - -Install Helm - -https://helm.sh/docs/intro/install/ - -## Deployment - -* Clone down the repository -* cd into directory -```bash -helm install flux-podinfo chart/ -``` - -## Values - -| Key | Type | Default | Description | -|-----|------|---------|-------------| -| podinfo.enabled | bool | `true` | | -| podinfo.git.repo | string | `"https://repo1.dso.mil/platform-one/big-bang/apps/sandbox/podinfo"` | | -| podinfo.git.tag | string | `"6.0.0-bb.5"` | | -| podinfo.git.path | string | `"chart"` | | -| podinfo.flux | object | `{}` | | -| podinfo.ingress.gateway | string | `""` | | -| podinfo.values.bbtests.enabled | bool | `true` | | -| podinfo.values.bbtests.cypress.envs.cypress_url | string | `"https://podinfo.bigbang.dev"` | | -| podinfo.values.bbtests.scripts.envs.URL | string | `"https://podinfo.bigbang.dev"` | | -| networkPolicies.enabled | bool | `false` | | -| jaeger.enabled | bool | `false` | | -| kiali.enabled | bool | `false` | | -| clusterAuditor.enabled | bool | `false` | | -| gatekeeper.enabled | bool | `false` | | -| kyverno.enabled | bool | `false` | | -| tempo.enabled | bool | `false` | | -| promtail.enabled | bool | `false` | | -| loki.enabled | bool | `false` | | -| eckoperator.enabled | bool | `false` | | -| logging.enabled | bool | `false` | | -| fluentbit.enabled | bool | `false` | | -| monitoring.enabled | bool | `false` | | -| twistlock.enabled | bool | `false` | | -| addons.argocd.enabled | bool | `false` | | -| addons.authservice.enabled | bool | `false` | | -| addons.gitlab.enabled | bool | `false` | | -| addons.gitlabRunner.enabled | bool | `false` | | -| addons.anchore.enabled | bool | `false` | | -| addons.sonarqube.enabled | bool | `false` | | -| addons.minioOperator.enabled | bool | `false` | | -| addons.minio.enabled | bool | `false` | | -| addons.mattermostoperator.enabled | bool | `false` | | -| addons.mattermost.enabled | bool | `false` | | -| addons.nexus.enabled | bool | `false` | | -| addons.velero.enabled | bool | `false` | | -| addons.keycloak.enabled | bool | `false` | | -| addons.vault.enabled | bool | `false` | | - -## Contributing - -Please see the [contributing guide](./CONTRIBUTING.md) if you are interested in contributing. # podinfo -  +  Podinfo Helm chart for Kubernetes @@ -115,7 +42,7 @@ helm install podinfo chart/ | host | string | `nil` | | | backend | string | `nil` | | | backends | list | `[]` | | -| image.repository | string | `"registry.dso.mil/platform-one/big-bang/apps/sandbox/podinfo/podinfo"` | | +| image.repository | string | `"ghcr.io/stefanprodan/podinfo"` | | | image.tag | string | `"6.0.0"` | | | image.pullPolicy | string | `"IfNotPresent"` | | | ui.color | string | `"#34577c"` | | diff --git a/chart/Chart.yaml b/chart/Chart.yaml index ae733d1..a164bec 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -version: 6.0.0-bb.6 +version: 6.0.0-bb.7 appVersion: 6.0.0 name: podinfo engine: gotpl diff --git a/chart/values.yaml b/chart/values.yaml index e63a883..bd78dc7 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -7,7 +7,7 @@ backend: #http://backend-podinfo:9898/echo backends: [] image: - repository: registry.dso.mil/platform-one/big-bang/apps/sandbox/podinfo/podinfo + repository: ghcr.io/stefanprodan/podinfo tag: 6.0.0 pullPolicy: IfNotPresent -- GitLab