UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 59b4d3f0 authored by Matt Boyer's avatar Matt Boyer :metal:
Browse files

Merge branch 'bug/gateway-policy-issue' into 'main'

fixing the way the gateway name is selected

See merge request !36
parents e68f683a 439beed1
No related branches found
Tags 0.4.8
1 merge request!36fixing the way the gateway name is selected
Pipeline #3318970 passed
......@@ -3,6 +3,10 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
---
## [0.4.8] - 2024-05-28
### Changed
- Fixed the ingressgateway authorization policy
## [0.4.7] - 2024-04-03
### Changed
- Made the ingress policy match all workloads if no matchlabels are provided
......
# wrapper
![Version: 0.4.7](https://img.shields.io/badge/Version-0.4.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.4.8](https://img.shields.io/badge/Version-0.4.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
Adds full Big Bang integration into a package
......@@ -9,7 +9,6 @@ Adds full Big Bang integration into a package
* <https://repo1.dso.mil/big-bang/product/packages/wrapper>
## Learn More
* [Introduction](docs/custom-packages-wrapper.md)
* [Application Overview](docs/overview.md)
* [Other Documentation](docs/)
......
apiVersion: v2
name: wrapper
version: 0.4.7
version: 0.4.8
description: Adds full Big Bang integration into a package
sources:
- https://repo1.dso.mil/big-bang/product/packages/wrapper
......
......@@ -10,7 +10,7 @@
{{- if contains "/" $name -}}
{{- $gatewayParts := split "/" $name }}
{{- $namespace = $gatewayParts._0 -}}
{{- $name := $gatewayParts._1 -}}
{{- $name = $gatewayParts._1 -}}
{{- end -}}
{{- $extraName := "" -}}
{{- range $currentName := $host.names -}}
......
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