TLS improvements (#1317)

* Fix tls hostname for ingress with path

* Possibility to set ExposeServiceTLS to true

* keep full path when extracting host

Co-authored-by: Tomas Kral <tomas.kral@gmail.com>
This commit is contained in:
Bo Biene
2020-11-30 15:48:50 +08:00
committed by GitHub
co-authored by Tomas Kral
parent 3772612ff9
commit 76565d80b2
3 changed files with 50 additions and 8 deletions
+34
View File
@@ -0,0 +1,34 @@
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make bin
- name: Test
run: make test
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.1.4
with:
path: "kompose"