Skip to content

Instantly share code, notes, and snippets.

@masanara
masanara / vmkernel.log
Created December 13, 2023 08:50
ESXI Log
2023-12-13T08:36:07.513Z Wa(180) vmkwarning: cpu5:528415)WARNING: NVMEIO:3329 Ctlr 256, nvmeCmd 0x4558fbc35f00, clientCmd 0x4558c13e2b80, q:1, a:244, r:32, no queue available, QFULL repeated 1 times.
2023-12-13T08:36:07.514Z Wa(180) vmkwarning: cpu4:524316)WARNING: HPP: HppNvmeThrottleLogForDevice:599: NVMe Cmd 0x1 (0x4558c1013b40, 534706) to dev "t10.NVMe____KINGSTON_SNV2S1000G_____________________C577082438B72600" on path "vmhba1:C0:T0:L0" Failed:
2023-12-13T08:36:07.514Z Wa(180) vmkwarning: cpu4:524316)WARNING: HPP: HppNvmeThrottleLogForDevice:607: Error status H:0x8 D:0x0 P:0x0 hppAction = 1
2023-12-13T08:36:07.514Z Wa(180) vmkwarning: cpu4:524316)WARNING: NvmeUtil: 149: Error on Cmd(0x4558c1013b40) 0x1, CmdSN 0x3f78c from world 534706 to component "t10.NVMe____KINGSTON_SNV2S1000G_____________________C577082438B72600" H:0x8 D:0x0 P:0x0
2023-12-13T08:36:07.632Z Wa(180) vmkwarning: cpu5:535808)WARNING: NVMEIO:3329 Ctlr 256, nvmeCmd 0x4558fbcb6300, clientCmd 0x4558c11e9440, q:1, a:238, r:32, no queue availa
apiVersion: v1
data:
antrea-agent.conf: |
# FeatureGates is a map of feature names to bools that enable or disable experimental features.
featureGates:
# Enable AntreaProxy which provides ServiceLB for in-cluster Services in antrea-agent.
# It should be enabled on Windows, otherwise NetworkPolicy will not take effect on
# Service traffic.
# AntreaProxy: true
@masanara
masanara / distribute_registry_cacert.sh
Created November 18, 2020 07:35
Install ca cert for registry into Tanzu Kubernetes Grid nodes.
#!/bin/bash
#
# distrbute registry ca certificate to tanzu guest cluster nodes
#
# @param1: tanzu-guest-clustername
GCL=$1
CACERT=/root/.cert/root_ca_certificate
#!/bin/bash
#
# This extremely rough nonsense is an attempt to automate the disaster recovery
# expired certs documentation published at
# https://docs.openshift.com/container-platform/4.1/disaster_recovery/scenario-3-expired-certs.html
# ... Which was last reviewed on 2019/06/10
#
# Please contact rsaw@redhat.com with suggestions or corrections
# CUSTOMIZE THESE:
#!/usr/bin/env python
import requests
import json
import re
from datetime import datetime
import pytz
from elasticsearch import Elasticsearch
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
#!/usr/bin/env python
import requests
import xmltodict
import json
import re
import datetime
import pytz
from influxdb import InfluxDBClient
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)

Docker ハンズオン

2016/06


前提

本ハンズオンでは Ubuntu 14.04/Docker 1.11 を前提としている。

各ディストリビューション向けのインストール手順は下記のページで詳細に説明されている。