-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NiFi and Zookeeper deployments (#27)
* Separated Kubernetes deployments of Apache NiFi and Zookeeper to their respective directories This allows us to modularise deployment of services and replace each component separately if needed - or replace them if required with your own choice of deployment * Updated Apache NiFi configuration certificate and dns name This will set consistent dns name to NiFI application
- Loading branch information
Showing
13 changed files
with
46 additions
and
34 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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ metadata: | |
server_tokens off; | ||
spec: | ||
rules: | ||
- host: $(HOST) | ||
- host: nifi | ||
http: | ||
paths: | ||
- path: / | ||
|
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,23 @@ | ||
--- | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
commonAnnotations: | ||
app.kubernetes.io/managed-by: kustomization | ||
|
||
resources: | ||
- ingress.yml | ||
- configmap.yml | ||
- ssl-configmap.yml | ||
- nifi.yml | ||
- hpa.yml | ||
- secrets.yml | ||
- service.yml | ||
|
||
images: | ||
- name: nifi | ||
newName: docker.io/apache/nifi | ||
newTag: "1.23.0" | ||
- name: wait | ||
newName: docker.io/busybox | ||
newTag: "1.36" |
File renamed without changes.
File renamed without changes.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
commonAnnotations: | ||
app.kubernetes.io/managed-by: kustomization | ||
|
||
resources: | ||
- configmap.yml | ||
- service.yml | ||
- zookeeper.yml | ||
|
||
images: | ||
- name: zookeeper | ||
newName: docker.io/zookeeper | ||
newTag: "3.8" |
File renamed without changes.
File renamed without changes.