-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
87 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...mize/streamcast-helm/streamcast-helm.yaml → .../kustomize/emicast-helm/emicast-helm.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Create streamcast-helm Kustomization | ||
# Create emicast-helm Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: streamcast-helm | ||
name: emicast-helm | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: src/clusters/main/apps/streamcast/kustomize/streamcast-helm/kustomize | ||
path: src/clusters/main/apps/emicast/kustomize/emicast-helm/kustomize | ||
dependsOn: | ||
# Deploy namespace first | ||
- name: streamcast-namespace | ||
- name: emicast-namespace | ||
# This key always needs to be here for patching to work | ||
patches: [] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...-helm/kustomize/resources/repository.yaml → ...-helm/kustomize/resources/repository.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
...mcast-namespace/streamcast-namespace.yaml → .../emicast-namespace/emicast-namespace.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# Create streamcast-namespace Kustomization | ||
# Create emicast-namespace Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: streamcast-namespace | ||
name: emicast-namespace | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: src/clusters/main/apps/streamcast/kustomize/streamcast-namespace/kustomize | ||
path: src/clusters/main/apps/emicast/kustomize/emicast-namespace/kustomize | ||
# This key always needs to be here for patching to work | ||
patches: [] |
2 changes: 1 addition & 1 deletion
2
...st-namespace/kustomize/kustomization.yaml → ...st-namespace/kustomize/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...clusters/main/apps/emicast/kustomize/emicast-namespace/kustomize/resources/namespace.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Create emicast namespace | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: emicast |
8 changes: 4 additions & 4 deletions
8
...treamcast-traefik/streamcast-traefik.yaml → ...mize/emicast-traefik/emicast-traefik.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Create streamcast-traefik Kustomization | ||
# Create emicast-traefik Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: streamcast-traefik | ||
name: emicast-traefik | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: src/clusters/main/apps/streamcast/kustomize/streamcast-traefik/kustomize | ||
path: src/clusters/main/apps/emicast/kustomize/emicast-traefik/kustomize | ||
dependsOn: | ||
# Deploy Helm release first | ||
- name: streamcast-helm | ||
- name: emicast-helm | ||
# This key always needs to be here for patching to work | ||
patches: [] |
2 changes: 1 addition & 1 deletion
2
...cast-traefik/kustomize/kustomization.yaml → ...cast-traefik/kustomize/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...efik/kustomize/resources/routes/http.yaml → ...efik/kustomize/resources/routes/http.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# Create HTTP ingress route for streamcast | ||
# Create HTTP ingress route for emicast | ||
apiVersion: traefik.io/v1alpha1 | ||
kind: IngressRoute | ||
metadata: | ||
name: streamcast-http | ||
name: emicast-http | ||
spec: | ||
entryPoints: | ||
# Use entrypoint for HTTPS traffic | ||
- https | ||
routes: | ||
# Match traffic with the Host header | ||
- match: HostRegexp(`streamcast\..*`) | ||
- match: HostRegexp(`emicast\..*`) | ||
kind: Rule | ||
services: | ||
# Route traffic to the streamcast service | ||
- name: streamcast | ||
# Route traffic to the emicast service | ||
- name: emicast | ||
# This is the name of the port in the service | ||
port: http |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Create emicast Kustomization | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
# Include the following resources | ||
resources: | ||
- emicast-helm/emicast-helm.yaml | ||
- emicast-namespace/emicast-namespace.yaml | ||
- emicast-traefik/emicast-traefik.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
src/clusters/main/apps/streamcast/kustomize/kustomization.yaml
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
...rs/main/apps/streamcast/kustomize/streamcast-namespace/kustomize/resources/namespace.yaml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...mize/streamcast-helm/streamcast-helm.yaml → .../kustomize/emicast-helm/emicast-helm.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Create streamcast-helm Kustomization | ||
# Create emicast-helm Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: streamcast-helm | ||
name: emicast-helm | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: tests/clusters/ci/main/apps/streamcast/kustomize/streamcast-helm/kustomize | ||
path: tests/clusters/ci/main/apps/emicast/kustomize/emicast-helm/kustomize | ||
dependsOn: | ||
# Deploy namespace first | ||
- name: streamcast-namespace | ||
- name: emicast-namespace | ||
# This key always needs to be here for patching to work | ||
patches: [] |
2 changes: 1 addition & 1 deletion
2
...eamcast-helm/kustomize/kustomization.yaml → ...emicast-helm/kustomize/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ast-helm/kustomize/resources/release.yaml → ...ast-helm/kustomize/resources/release.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...-helm/kustomize/resources/repository.yaml → ...-helm/kustomize/resources/repository.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...mcast-namespace/streamcast-namespace.yaml → .../emicast-namespace/emicast-namespace.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# Create streamcast-namespace Kustomization | ||
# Create emicast-namespace Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: streamcast-namespace | ||
name: emicast-namespace | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: tests/clusters/ci/main/apps/streamcast/kustomize/streamcast-namespace/kustomize | ||
path: tests/clusters/ci/main/apps/emicast/kustomize/emicast-namespace/kustomize | ||
# This key always needs to be here for patching to work | ||
patches: [] |
5 changes: 5 additions & 0 deletions
5
tests/clusters/ci/main/apps/emicast/kustomize/emicast-namespace/kustomize/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Overlay emicast-namespace Kustomization | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- ../../../../../../../../../src/clusters/main/apps/emicast/kustomize/emicast-namespace/kustomize |
8 changes: 4 additions & 4 deletions
8
...treamcast-traefik/streamcast-traefik.yaml → ...mize/emicast-traefik/emicast-traefik.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Create streamcast-traefik Kustomization | ||
# Create emicast-traefik Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: streamcast-traefik | ||
name: emicast-traefik | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: tests/clusters/ci/main/apps/streamcast/kustomize/streamcast-traefik/kustomize | ||
path: tests/clusters/ci/main/apps/emicast/kustomize/emicast-traefik/kustomize | ||
dependsOn: | ||
# Deploy Helm release first | ||
- name: streamcast-helm | ||
- name: emicast-helm | ||
# This key always needs to be here for patching to work | ||
patches: [] |
5 changes: 5 additions & 0 deletions
5
tests/clusters/ci/main/apps/emicast/kustomize/emicast-traefik/kustomize/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Overlay emicast-traefik Kustomization | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- ../../../../../../../../../src/clusters/main/apps/emicast/kustomize/emicast-traefik/kustomize |
8 changes: 8 additions & 0 deletions
8
tests/clusters/ci/main/apps/emicast/kustomize/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Create emicast Kustomization | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
# Include the following resources | ||
resources: | ||
- emicast-helm/emicast-helm.yaml | ||
- emicast-namespace/emicast-namespace.yaml | ||
- emicast-traefik/emicast-traefik.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
tests/clusters/ci/main/apps/streamcast/kustomize/kustomization.yaml
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
...sters/ci/main/apps/streamcast/kustomize/streamcast-namespace/kustomize/kustomization.yaml
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
...lusters/ci/main/apps/streamcast/kustomize/streamcast-traefik/kustomize/kustomization.yaml
This file was deleted.
Oops, something went wrong.