-
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
33 changed files
with
89 additions
and
89 deletions.
There are no files selected for viewing
5 changes: 0 additions & 5 deletions
5
...main/databases/datatunes/kustomize/datatunes-namespace/kustomize/resources/namespace.yaml
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
src/clusters/main/databases/datatunes/kustomize/kustomization.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: 8 additions & 0 deletions
8
src/clusters/main/databases/mediatunes/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 mediatunes Kustomization | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
# Include the following resources | ||
resources: | ||
- mediatunes-helm/mediatunes-helm.yaml | ||
- mediatunes-namespace/mediatunes-namespace.yaml | ||
- mediatunes-traefik/mediatunes-traefik.yaml |
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.
8 changes: 4 additions & 4 deletions
8
...tomize/datatunes-helm/datatunes-helm.yaml → ...mize/mediatunes-helm/mediatunes-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 datatunes-helm Kustomization | ||
# Create mediatunes-helm Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: datatunes-helm | ||
name: mediatunes-helm | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: tests/clusters/ci/main/databases/datatunes/kustomize/datatunes-helm/kustomize | ||
path: src/clusters/main/databases/mediatunes/kustomize/mediatunes-helm/kustomize | ||
dependsOn: | ||
# Deploy namespace first | ||
- name: datatunes-namespace | ||
- name: mediatunes-namespace | ||
# This key always needs to be here for patching to work | ||
patches: [] |
2 changes: 1 addition & 1 deletion
2
...es-namespace/kustomize/kustomization.yaml → ...es-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
...in/databases/mediatunes/kustomize/mediatunes-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 mediatunes namespace | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: mediatunes |
6 changes: 3 additions & 3 deletions
6
...atunes-namespace/datatunes-namespace.yaml → ...tunes-namespace/mediatunes-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 datatunes-namespace Kustomization | ||
# Create mediatunes-namespace Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: datatunes-namespace | ||
name: mediatunes-namespace | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: src/clusters/main/databases/datatunes/kustomize/datatunes-namespace/kustomize | ||
path: src/clusters/main/databases/mediatunes/kustomize/mediatunes-namespace/kustomize | ||
# This key always needs to be here for patching to work | ||
patches: [] |
2 changes: 1 addition & 1 deletion
2
...unes-traefik/kustomize/kustomization.yaml → ...unes-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
...raefik/kustomize/resources/routes/s3.yaml → ...raefik/kustomize/resources/routes/s3.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 S3 ingress route for datatunes | ||
# Create S3 ingress route for mediatunes | ||
apiVersion: traefik.io/v1alpha1 | ||
kind: IngressRoute | ||
metadata: | ||
name: datatunes-s3 | ||
name: mediatunes-s3 | ||
spec: | ||
entryPoints: | ||
# Use entrypoint for HTTPS traffic | ||
- https | ||
routes: | ||
# Match traffic with the Host header | ||
- match: HostRegexp(`datatunes\..*`) | ||
- match: HostRegexp(`mediatunes\..*`) | ||
kind: Rule | ||
services: | ||
# Route traffic to the datatunes service | ||
- name: datatunes | ||
# Route traffic to the mediatunes service | ||
- name: mediatunes | ||
# This is the name of the port in the service | ||
port: s3 |
10 changes: 5 additions & 5 deletions
10
...aefik/kustomize/resources/routes/web.yaml → ...aefik/kustomize/resources/routes/web.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 web ingress route for datatunes | ||
# Create web ingress route for mediatunes | ||
apiVersion: traefik.io/v1alpha1 | ||
kind: IngressRoute | ||
metadata: | ||
name: datatunes-web | ||
name: mediatunes-web | ||
spec: | ||
entryPoints: | ||
# Use entrypoint for HTTPS traffic | ||
- https | ||
routes: | ||
# Match traffic with the Host header | ||
- match: HostRegexp(`web\.datatunes\..*`) | ||
- match: HostRegexp(`web\.mediatunes\..*`) | ||
kind: Rule | ||
services: | ||
# Route traffic to the datatunes service | ||
- name: datatunes | ||
# Route traffic to the mediatunes service | ||
- name: mediatunes | ||
# This is the name of the port in the service | ||
port: web |
8 changes: 4 additions & 4 deletions
8
.../datatunes-traefik/datatunes-traefik.yaml → ...ediatunes-traefik/mediatunes-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 datatunes-traefik Kustomization | ||
# Create mediatunes-traefik Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: datatunes-traefik | ||
name: mediatunes-traefik | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: tests/clusters/ci/main/databases/datatunes/kustomize/datatunes-traefik/kustomize | ||
path: src/clusters/main/databases/mediatunes/kustomize/mediatunes-traefik/kustomize | ||
dependsOn: | ||
# Deploy Helm release first | ||
- name: datatunes-helm | ||
- name: mediatunes-helm | ||
# This key always needs to be here for patching to work | ||
patches: [] |
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
5 changes: 0 additions & 5 deletions
5
...rs/ci/main/databases/datatunes/kustomize/datatunes-namespace/kustomize/kustomization.yaml
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
...ters/ci/main/databases/datatunes/kustomize/datatunes-traefik/kustomize/kustomization.yaml
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
tests/clusters/ci/main/databases/datatunes/kustomize/kustomization.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: 8 additions & 0 deletions
8
tests/clusters/ci/main/databases/mediatunes/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 mediatunes Kustomization | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
# Include the following resources | ||
resources: | ||
- mediatunes-helm/mediatunes-helm.yaml | ||
- mediatunes-namespace/mediatunes-namespace.yaml | ||
- mediatunes-traefik/mediatunes-traefik.yaml |
2 changes: 1 addition & 1 deletion
2
...tatunes-helm/kustomize/kustomization.yaml → ...iatunes-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
...nes-helm/kustomize/resources/release.yaml → ...nes-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
8 changes: 4 additions & 4 deletions
8
...tomize/datatunes-helm/datatunes-helm.yaml → ...mize/mediatunes-helm/mediatunes-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 datatunes-helm Kustomization | ||
# Create mediatunes-helm Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: datatunes-helm | ||
name: mediatunes-helm | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: src/clusters/main/databases/datatunes/kustomize/datatunes-helm/kustomize | ||
path: tests/clusters/ci/main/databases/mediatunes/kustomize/mediatunes-helm/kustomize | ||
dependsOn: | ||
# Deploy namespace first | ||
- name: datatunes-namespace | ||
- name: mediatunes-namespace | ||
# This key always needs to be here for patching to work | ||
patches: [] |
5 changes: 5 additions & 0 deletions
5
.../ci/main/databases/mediatunes/kustomize/mediatunes-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 mediatunes-namespace Kustomization | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- ../../../../../../../../../src/clusters/main/databases/mediatunes/kustomize/mediatunes-namespace/kustomize |
6 changes: 3 additions & 3 deletions
6
...atunes-namespace/datatunes-namespace.yaml → ...tunes-namespace/mediatunes-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 datatunes-namespace Kustomization | ||
# Create mediatunes-namespace Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: datatunes-namespace | ||
name: mediatunes-namespace | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: tests/clusters/ci/main/databases/datatunes/kustomize/datatunes-namespace/kustomize | ||
path: tests/clusters/ci/main/databases/mediatunes/kustomize/mediatunes-namespace/kustomize | ||
# This key always needs to be here for patching to work | ||
patches: [] |
5 changes: 5 additions & 0 deletions
5
...rs/ci/main/databases/mediatunes/kustomize/mediatunes-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 mediatunes-traefik Kustomization | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- ../../../../../../../../../src/clusters/main/databases/mediatunes/kustomize/mediatunes-traefik/kustomize |
8 changes: 4 additions & 4 deletions
8
.../datatunes-traefik/datatunes-traefik.yaml → ...ediatunes-traefik/mediatunes-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 datatunes-traefik Kustomization | ||
# Create mediatunes-traefik Kustomization | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: datatunes-traefik | ||
name: mediatunes-traefik | ||
spec: | ||
# Path inside repository to a directory containing Kustomization files | ||
path: src/clusters/main/databases/datatunes/kustomize/datatunes-traefik/kustomize | ||
path: tests/clusters/ci/main/databases/mediatunes/kustomize/mediatunes-traefik/kustomize | ||
dependsOn: | ||
# Deploy Helm release first | ||
- name: datatunes-helm | ||
- name: mediatunes-helm | ||
# This key always needs to be here for patching to work | ||
patches: [] |
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