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
k0s: | |
config: | |
spec: | |
api: | |
externalAddress: <load balancer public ip address> | |
sans: | |
- <load balancer public ip address> |
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
global | |
log /dev/log local0 | |
log /dev/log local1 notice | |
chroot /var/lib/haproxy | |
stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners | |
stats timeout 30s | |
user haproxy | |
group haproxy | |
daemon |
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
frontend kubeAPI | |
bind :6443 | |
default_backend kubeAPI_backend | |
frontend konnectivity | |
bind :8132 | |
default_backend konnectivity_backend | |
frontend controllerJoinAPI | |
bind :9443 | |
default_backend controllerJoinAPI_backend |
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
server { | |
listen 80; | |
server_name subdomain.domain.tld; | |
error_log /var/log/nginx/subdomain.domain.tld-err.log; | |
access_log /var/log/nginx/subdomain.domain.tld-access.log; | |
location / { | |
proxy_pass http://localhost:8080; | |
proxy_set_header Upgrade $http_upgrade; |
Adalah tools yang digunakan untuk menjalankan container
Teknologi yang digunakan untuk menjalankan sebuah aplikasi, dimana dengan container aplikasi akan dibungkus bersama dengan libraries yang dibutuhkan aplikasi tersebut. Sehinga lebih cepat apabila dijalankan dibandingkan dengan virutalization.
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
<!DOCTYPE html> | |
<html> | |
<!-- | |
Copyright 2016 Google Inc. | |
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
######################################################################## | |
######################################################################## | |
## This is a sample configuration file for the ftpsync mirror script. ## | |
## Only options most users may need are included. For documentation ## | |
## and all available options see ftpsync.conf(5). ## | |
######################################################################## | |
######################################################################## | |
# MIRRORNAME=`hostname -f` | |
TO="/home/debian-mirror/data" |