-
Notifications
You must be signed in to change notification settings - Fork 2
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
6 changed files
with
131 additions
and
21 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: icinga-kubernetes-config | ||
data: | ||
config: | | ||
# This is the configuration file for Icinga Kubernetes. | ||
# | ||
# Connection configuration for the database to which Icinga Kubernetes synchronizes Kubernetes data. | ||
# This is also the database used in Icinga Kubernetes Web to view and work with the data. | ||
database: | ||
# Database type. Either 'mysql' for MySQL or 'pgsql' for PostgreSQL. | ||
# Defaults to 'mysql'. | ||
# type: mysql | ||
# Database host or absolute Unix socket path. | ||
host: 10.96.0.2 | ||
# Database port. By default, the MySQL or PostgreSQL port, depending on the database type. | ||
# port: | ||
# Database name. | ||
database: kubernetes | ||
# Database user. | ||
user: kubernetes | ||
# Database password. | ||
password: kubernetes | ||
# Icinga Kubernetes logs its activities at various severity levels and any errors that occur either | ||
# on the console or in systemd's journal. The latter is used automatically when running under systemd. | ||
# In any case, the default log level is 'info'. | ||
logging: | ||
# Default logging level. Can be set to 'fatal', 'error', 'warn', 'info' or 'debug'. | ||
# If not set, defaults to 'info'. | ||
level: info | ||
|
||
# Logging output. Can be set to 'console' (stderr) or 'systemd-journald'. | ||
# If not set, logs to systemd-journald when running under systemd, otherwise stderr. | ||
# output: | ||
|
||
# Interval for periodic logging defined as duration string. | ||
# A duration string is a sequence of decimal numbers and a unit suffix, such as "20s". | ||
# Valid units are "ms", "s", "m", "h". | ||
# Defaults to "20s". | ||
# interval: 20s |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,46 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: icinga-kubernetes | ||
labels: | ||
app: icinga-kubernetes | ||
spec: | ||
affinity: | ||
nodeAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: kubernetes.io/hostname | ||
operator: In | ||
values: | ||
- minikube | ||
containers: | ||
- name: icinga-kubernetes | ||
image: icinga-kubernetes | ||
imagePullPolicy: Never | ||
ports: | ||
- containerPort: 8080 | ||
|
||
--- | ||
kind: ClusterRole | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
namespace: default | ||
name: pod-reader | ||
rules: | ||
- apiGroups: [ "" ] # "" indicates the core API group | ||
resources: [ "*" ] | ||
verbs: [ "get", "watch", "list" ] | ||
|
||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: read-pods | ||
namespace: default | ||
subjects: | ||
- kind: ServiceAccount | ||
name: default | ||
namespace: default | ||
roleRef: | ||
kind: ClusterRole | ||
name: pod-reader | ||
apiGroup: "" |
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,10 @@ | ||
FROM mysql:latest | ||
|
||
ENV MYSQL_USER=kubernetes | ||
ENV MYSQL_PASSWORD=kubernetes | ||
ENV MYSQL_DATABASE=kubernetes | ||
ENV MYSQL_ROOT_PASSWORD=kubernetes | ||
|
||
COPY schema.sql /docker-entrypoint-initdb.d | ||
|
||
EXPOSE 3306 |