ESXi 6.5 | ESXi 6.7 | VMware Fusion 11 | Guest Description |
---|---|---|---|
CRXPod1-64 | VMware CRX Pod 1 | ||
CRXSys1-64 | VMware CRX Sys 1 | ||
amazonlinux2-64 | Amazon Linux 2 or higher, 64-Bit | ||
asianux3Guest | asianux3Guest | asianux3 | Asianux Server 3 |
asianux3_64Guest | asianux3_64Guest | asianux3-64 | Asianux Server 3, 64-Bit |
asianux4Guest | asianux4Guest | asianux4 | Asia Linux 4 |
asianux4_64Guest | asianux4_64Guest | as |
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
Tính năng | Istio | Linkerd | Consul | |
---|---|---|---|---|
Thông tin chung | ||||
Viết bằng Golang | Có | Có | Có | |
Mã nguồn mở | Có https://github.com/istio/istio | Có https://github.com/linkerd/linkerd2 | Có https://github.com/hashicorp/consul | |
Có bản hỗ trợ thương mại | Tính năng beta sẵn có trên GCP | Có | Có | |
Tài liệu hướng dẫn | Có | Có | Có | |
Được chống lưng bởi | Google IBM | Buoyant. Các CTO đều là những người làm hạ tầng cho Twitter tách ra để mở công ty riêng | HashiCorp. CTO là những người rất trẻ và xây dựng được công ty thành công ty tỷ đô | |
Phiên bản hiện tại | 1.6 | 2.8 | 1.8 | |
Kiến trúc sử dụng | ||||
Môi trường áp dụng | Kubernetes + VM | Chỉ có Kubernetes | Kubernetes + VM |
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
[base] | |
name=CentOS-$releasever - Base | |
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra | |
baseurl=http://vault.centos.org/6.10/os/$basearch/ | |
gpgcheck=1 | |
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 | |
#released updates [updates] name=CentOS-$releasever - Updates #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra baseurl=http://vault.centos.org/6.10/updates/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 | |
#additional packages that may be useful [extras] name=CentOS-$releasever - Extras #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras&infra=$infra baseurl=http://vault.centos.org/6.10/extras/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 | |
#additional packages that extend functionality of existing packages [centosplus] name=CentOS-$releasever - Plus #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch |
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
# | |
# Makefile for node application | |
# by @geta6 | |
# | |
NODE = node | |
NPM = npm | |
PM2 = ./node_modules/.bin/pm2 | |
BOWER = ./node_modules/.bin/bower |
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
FROM node:12.22.12-buster-slim as builder | |
ARG DEBIAN_FRONTEND=noninteractive | |
ARG NPM_TOKEN=default_value | |
ARG PROJECT_NAME=web-billing | |
WORKDIR /${PROJECT_NAME} | |
RUN npm install -g vsts-npm-auth && \ | |
apt update -y && \ | |
apt install chromium chromium-driver -y |
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
@echo off | |
rem A modified version of the disable defender script from: https://pastebin.com/kYCVzZPz | |
@echo on | |
rem ========================================== | |
rem This section will Disable Windows Defender | |
rem You can ignore error messages | |
rem 1 - Disable Real-time protection | |
reg delete "HKLM\Software\Policies\Microsoft\Windows Defender" /f | |
reg add "HKLM\Software\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t REG_DWORD /d "1" /f |
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
# GNOME 3.6.2 | |
# stole fair and square from https://gist.github.com/musinsky/2402448#file-gnome-sh | |
gsettings set org.gnome.desktop.default-applications.terminal exec 'gnome-terminal --geometry=96x24+0-0' | |
gsettings set org.gnome.desktop.default-applications.terminal exec-arg '-x' | |
gsettings set org.gnome.desktop.background picture-options 'none' | |
gsettings set org.gnome.desktop.background color-shading-type 'vertical' | |
gsettings set org.gnome.desktop.background primary-color '#3C78B4' # (Red: 60 Green: 120 Blue: 180) | |
gsettings set org.gnome.desktop.background secondary-color '#1E3C5A' # (Red: 30 Green: 60 Blue: 90) |
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
#!/usr/bin/env bash | |
# Note: LOGIN SCREEN SCALE (200%), LOGIN SCREEN SIZE (1152x864) and DISPLAY SCALE (200%) below are dependant on | |
# Virtual Machine > Settings > Display > 'Use full resolution for Retina display' in VMware Fusion being checked | |
# (gui.fitGuestUsingNativeDisplayResolution = "TRUE" in .vmx file) | |
# Get the installed Ubuntu version e.g. 20, 18, 16 etc. | |
VERSION=$(lsb_release -r | awk '{print $2}' | cut -d '.' -f 1) |
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
$task = Get-ScheduledTask | Where-Object ` | |
{ ` | |
$_.TaskPath -eq "\Microsoft\Windows\UpdateOrchestrator\" -and ` | |
$_.TaskName -eq "Reboot" ` | |
} | |
$task_file = "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Reboot" | |
if( $task -eq $null ) | |
{ |
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
#!/bin/bash | |
FEED_HOME="https://community.greenbone.net/t/about-greenbone-community-feed-gcf/1224" | |
FEED_VENDOR="Greenbone Networks GmbH" | |
write_feed_xml () { | |
FEED_VERSION=`cat $FEED_DIR/timestamp` | |
mkdir -p $FEED_DIR |