Status: Proposed | Accepted | Deprecated | Superseded by ADR-XXXX
Date: YYYY-MM-DD
Authors: [Your Name(s)]
Reviewers: [Reviewer Name(s)]
Tags: #architecture
#kubernetes
#compliance
(optional)
This file contains hidden or 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
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
This file contains hidden or 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
disableKubeDnsScraping: true | |
logs: | |
enabled: true | |
logzio-fluentd: | |
env_id: <ENVIRONMENT ID> | |
secrets: | |
logzioListener: listener.logz.io | |
logzioShippingToken: <SECRET TOKEN> | |
logzio-k8s-telemetry: | |
enableMetricsFilter: |
This file contains hidden or 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
{ | |
"Statement": [ | |
{ | |
"Action": [ | |
"ec2:DescribeTags", | |
], | |
"Effect": "Allow", | |
"Resource": "*" | |
} | |
], |
This file contains hidden or 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
logs: | |
enabled: true | |
logzio-fluentd: | |
env_id: ${ENV_ID} | |
secrets: | |
logzioListener: listener.logz.io | |
logzioShippingToken: ${LOGZIO_LOGS_TOKEN} | |
logzio-k8s-telemetry: | |
enableMetricsFilter: | |
eks: true |
This file contains hidden or 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
[SERVICE] | |
# Flush | |
# ===== | |
# set an interval of seconds before to flush records to a destination | |
flush 1 | |
# Daemon | |
# ====== | |
# instruct Fluent Bit to run in foreground or background mode. | |
daemon Off |
This file contains hidden or 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
# Create the config and edit necesary fields | |
openshift-install create install-config --dir $HOME/cluster-${GUID} | |
# create the cluster | |
openshift-install create cluster --dir $HOME/cluster-${GUID} | |
#Create a httpassword file | |
#apply identity provider via web ui |
This file contains hidden or 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
# @see https://github.com/uken/fluent-plugin-elasticsearch#generate-hash-id | |
<filter **> | |
@type elasticsearch_genid | |
hash_id_key _hash | |
</filter> | |
# Apply value from filter to id_key field | |
# Elasticsearch also doesn't like field names with `_` so remove it. | |
<match **> | |
@type elasticsearch | |
hosts elasticsearch.local:9200 |
NewerOlder