rancher / rke2

https://docs.rke2.io/
Apache License 2.0
1.54k stars 267 forks source link

Restarting after quorum loss does not successfully reset the cluster #320

Closed rancher-max closed 4 years ago

rancher-max commented 4 years ago

Description: After setting up a multi-server node cluster, and then stopping the majority of the server nodes so that it loses quorum, it then fails to come back up successfully to a usable state. NOTE this only affects rke2, not k3s. The same steps in k3s result in the expected behavior. Also NOTE this applies whether using the binary or install scripts.

Steps to reproduce:

  1. Create a 3 server-node cluster. I used the binary directly to do this:
    wget https://github.com/rancher/rke2/releases/download/v1.18.8-beta19+rke2/rke2.linux-amd64 && \
    sudo mv rke2.linux-amd64 /usr/local/bin/rke2 && \
    sudo chmod u+x /usr/local/bin/rke2 
    # Node 1:
    sudo rke2 server --write-kubeconfig-mode 644 --cluster-init --etcd-snapshot-retention 7  --etcd-snapshot-schedule-cron="*/5 * * * *" 2>&1 &
    # Other nodes:
    sudo rke2 server --token="<token value>" --server="https://<node 1 public ip>:9345" 2>&1 &
  2. Deploy a few workloads in the cluster. Wait until a snapshot is taken. Deploy a few more workloads.
  3. Shutdown nodes 2 and 3.
    • The cluster should now be unreachable as quorum has been lost.
  4. Restart node 1 using: sudo rke2 server --write-kubeconfig-mode 644 --cluster-init --etcd-snapshot-retention 7 --etcd-snapshot-schedule-cron="*/5 * * * *" --cluster-reset --cluster-reset-restore-path="/var/lib/rancher/rke2/server/db/snapshots/<val with the first few workloads>" 2>&1 &
    • I saw errors for a while: ERRO[0020] This server is a not a member of the etcd cluster. Found [ip-172-31-23-63-dde66403=https://172.31.23.63:2380 ip-172-31-18-246-0602b4e3=https://172.31.18.246:2380 ip-172-31-28-148-24429a45=https://172.31.28.148:2380], expect: ip-172-31-18-246-0250c7cc=172.31.18.246
    • It eventually resolved itself, ending with: INFO[0032] etcd is running, restart without --cluster-reset flag now. Backup and delete ${datadir}/server/db on each peer etcd server and rejoin the nodes. However, I believe this part is already incorrect as instead it should tell me something about "restart without restore-path"
  5. Restart anyway now using the initial install command: sudo rke2 server --write-kubeconfig-mode 644 --cluster-init --etcd-snapshot-retention 7 --etcd-snapshot-schedule-cron="*/5 * * * *" 2>&1 &

Results: This led to many error messages in the logs of:

ERRO[0007] Failed to connect to proxy                    error="dial tcp 172.31.28.148:9345: connect: no route to host"
ERRO[0007] Remotedialer proxy error                      error="dial tcp 172.31.28.148:9345: connect: no route to host"
ERRO[0009] Failed to connect to proxy                    error="dial tcp 172.31.23.63:9345: connect: no route to host"
ERRO[0009] Remotedialer proxy error                      error="dial tcp 172.31.23.63:9345: connect: no route to host"

where those IPs are the private IPs of the other two nodes that were shutdown.

Eventually, it gave a fatal leaderelection error:

E0914 23:05:17.229897   65084 leaderelection.go:321] error retrieving resource lock kube-system/rke2: Get "https://127.0.0.1:6443/api/v1/namespaces/kube-system/configmaps/rke2": context deadline exceeded
I0914 23:05:17.229937   65084 leaderelection.go:278] failed to renew lease kube-system/rke2: timed out waiting for the condition
E0914 23:05:17.230005   65084 leaderelection.go:297] Failed to release lock: resource name may not be empty
FATA[0034] leaderelection lost for rke2                 

[1]+  Exit 1                  sudo rke2 server --write-kubeconfig-mode 644 --cluster-init --etcd-snapshot-retention 7 --etcd-snapshot-schedule-cron="*/5 * * * *" 2>&1

However, at this time, the cluster acted like it was accessible:

# kubectl get nodes
NAME               STATUS     ROLES         AGE    VERSION
ip-172-31-18-246   NotReady   etcd,master   106m   v1.18.8-beta19+rke2
ip-172-31-23-63    Ready      etcd,master   52m    v1.18.8-beta19+rke2
ip-172-31-28-148   Ready      etcd,master   78m    v1.18.8-beta19+rke2

The NotReady node here is the one that is still running, and the other two are stopped.

The other interesting thing is it DOES appear to have restored the snapshot, because the original few workloads I deployed are present and the other ones I deployed after this snapshot was taken are not. However, The cluster is generally not functional. Deploying and deleting more workloads fails.

Expected Behavior: Cluster should restore from snapshot and be functional as a single-node cluster with the other nodes that were previously present in a NotReady state.

Logs: This log file is from running the reset and after that: rke2.log

rancher-max commented 4 years ago

This appears to be resetting the cluster now, however I see one issue that happens sporadically whether using the install script or the rke2 binary: CrashLoopBackoff in kube-apiserver

Note that otherwise the cluster is functional. Creating/deleting workloads and deleting the failed nodes was successful, as well as adding new nodes. This issue also does not happen every time but I've seen it more times than not.

Logs in the pod show:

Flag --insecure-port has been deprecated, This flag will be removed in a future version.
I0922 19:59:24.372160       1 server.go:618] external host was not specified, using 172.31.4.204
I0922 19:59:24.374198       1 server.go:148] Version: v1.18.8-beta20+rke2
Error: failed to create listener: failed to listen on 0.0.0.0:6443: listen tcp 0.0.0.0:6443: bind: address already in use
Usage:
  kube-apiserver [flags]

Generic flags:

      --advertise-address ip                         The IP address on which to advertise the apiserver to members of the cluster. This address must be reachable by the rest of the cluster. If blank, the --bind-address will be used. If --bind-address is unspecified, the host's default interface will be used.
      --cloud-provider-gce-l7lb-src-cidrs cidrs      CIDRs opened in GCE firewall for L7 LB traffic proxy & health checks (default 130.211.0.0/22,35.191.0.0/16)
      --cors-allowed-origins strings                 List of allowed origins for CORS, comma separated.  An allowed origin can be a regular expression to support subdomain matching. If this list is empty CORS will not be enabled.
      --default-not-ready-toleration-seconds int     Indicates the tolerationSeconds of the toleration for notReady:NoExecute that is added by default to every pod that does not already have such a toleration. (default 300)
      --default-unreachable-toleration-seconds int   Indicates the tolerationSeconds of the toleration for unreachable:NoExecute that is added by default to every pod that does not already have such a toleration. (default 300)
      --enable-priority-and-fairness                 If true and the APIPriorityAndFairness feature gate is enabled, replace the max-in-flight handler with an enhanced one that queues and dispatches with priority and fairness (default true)
      --external-hostname string                     The hostname to use when generating externalized URLs for this master (e.g. Swagger API Docs or OpenID Discovery).
      --feature-gates mapStringBool                  A set of key=value pairs that describe feature gates for alpha/experimental features. Options are:
                                                     APIListChunking=true|false (BETA - default=true)
                                                     APIPriorityAndFairness=true|false (ALPHA - default=false)
                                                     APIResponseCompression=true|false (BETA - default=true)
                                                     AllAlpha=true|false (ALPHA - default=false)
                                                     AllBeta=true|false (BETA - default=false)
                                                     AllowInsecureBackendProxy=true|false (BETA - default=true)
                                                     AnyVolumeDataSource=true|false (ALPHA - default=false)
                                                     AppArmor=true|false (BETA - default=true)
                                                     BalanceAttachedNodeVolumes=true|false (ALPHA - default=false)
                                                     BoundServiceAccountTokenVolume=true|false (ALPHA - default=false)
                                                     CPUManager=true|false (BETA - default=true)
                                                     CRIContainerLogRotation=true|false (BETA - default=true)
                                                     CSIInlineVolume=true|false (BETA - default=true)
                                                     CSIMigration=true|false (BETA - default=true)
                                                     CSIMigrationAWS=true|false (BETA - default=false)
                                                     CSIMigrationAWSComplete=true|false (ALPHA - default=false)
                                                     CSIMigrationAzureDisk=true|false (ALPHA - default=false)
                                                     CSIMigrationAzureDiskComplete=true|false (ALPHA - default=false)
                                                     CSIMigrationAzureFile=true|false (ALPHA - default=false)
                                                     CSIMigrationAzureFileComplete=true|false (ALPHA - default=false)
                                                     CSIMigrationGCE=true|false (BETA - default=false)
                                                     CSIMigrationGCEComplete=true|false (ALPHA - default=false)
                                                     CSIMigrationOpenStack=true|false (BETA - default=false)
                                                     CSIMigrationOpenStackComplete=true|false (ALPHA - default=false)
                                                     ConfigurableFSGroupPolicy=true|false (ALPHA - default=false)
                                                     CustomCPUCFSQuotaPeriod=true|false (ALPHA - default=false)
                                                     DefaultIngressClass=true|false (BETA - default=true)
                                                     DevicePlugins=true|false (BETA - default=true)
                                                     DryRun=true|false (BETA - default=true)
                                                     DynamicAuditing=true|false (ALPHA - default=false)
                                                     DynamicKubeletConfig=true|false (BETA - default=true)
                                                     EndpointSlice=true|false (BETA - default=true)
                                                     EndpointSliceProxying=true|false (ALPHA - default=false)
                                                     EphemeralContainers=true|false (ALPHA - default=false)
                                                     EvenPodsSpread=true|false (BETA - default=true)
                                                     ExpandCSIVolumes=true|false (BETA - default=true)
                                                     ExpandInUsePersistentVolumes=true|false (BETA - default=true)
                                                     ExpandPersistentVolumes=true|false (BETA - default=true)
                                                     ExperimentalHostUserNamespaceDefaulting=true|false (BETA - default=false)
                                                     HPAScaleToZero=true|false (ALPHA - default=false)
                                                     HugePageStorageMediumSize=true|false (ALPHA - default=false)
                                                     HyperVContainer=true|false (ALPHA - default=false)
                                                     IPv6DualStack=true|false (ALPHA - default=false)
                                                     ImmutableEphemeralVolumes=true|false (ALPHA - default=false)
                                                     KubeletPodResources=true|false (BETA - default=true)
                                                     LegacyNodeRoleBehavior=true|false (ALPHA - default=true)
                                                     LocalStorageCapacityIsolation=true|false (BETA - default=true)
                                                     LocalStorageCapacityIsolationFSQuotaMonitoring=true|false (ALPHA - default=false)
                                                     NodeDisruptionExclusion=true|false (ALPHA - default=false)
                                                     NonPreemptingPriority=true|false (ALPHA - default=false)
                                                     PodDisruptionBudget=true|false (BETA - default=true)
                                                     PodOverhead=true|false (BETA - default=true)
                                                     ProcMountType=true|false (ALPHA - default=false)
                                                     QOSReserved=true|false (ALPHA - default=false)
                                                     RemainingItemCount=true|false (BETA - default=true)
                                                     RemoveSelfLink=true|false (ALPHA - default=false)
                                                     ResourceLimitsPriorityFunction=true|false (ALPHA - default=false)
                                                     RotateKubeletClientCertificate=true|false (BETA - default=true)
                                                     RotateKubeletServerCertificate=true|false (BETA - default=true)
                                                     RunAsGroup=true|false (BETA - default=true)
                                                     RuntimeClass=true|false (BETA - default=true)
                                                     SCTPSupport=true|false (ALPHA - default=false)
                                                     SelectorIndex=true|false (ALPHA - default=false)
                                                     ServerSideApply=true|false (BETA - default=true)
                                                     ServiceAccountIssuerDiscovery=true|false (ALPHA - default=false)
                                                     ServiceAppProtocol=true|false (ALPHA - default=false)
                                                     ServiceNodeExclusion=true|false (ALPHA - default=false)
                                                     ServiceTopology=true|false (ALPHA - default=false)
                                                     StartupProbe=true|false (BETA - default=true)
                                                     StorageVersionHash=true|false (BETA - default=true)
                                                     SupportNodePidsLimit=true|false (BETA - default=true)
                                                     SupportPodPidsLimit=true|false (BETA - default=true)
                                                     Sysctls=true|false (BETA - default=true)
                                                     TTLAfterFinished=true|false (ALPHA - default=false)
                                                     TokenRequest=true|false (BETA - default=true)
                                                     TokenRequestProjection=true|false (BETA - default=true)
                                                     TopologyManager=true|false (BETA - default=true)
                                                     ValidateProxyRedirects=true|false (BETA - default=true)
                                                     VolumeSnapshotDataSource=true|false (BETA - default=true)
                                                     WinDSR=true|false (ALPHA - default=false)
                                                     WinOverlay=true|false (ALPHA - default=false)
      --goaway-chance float                          To prevent HTTP/2 clients from getting stuck on a single apiserver, randomly close a connection (GOAWAY). The client's other in-flight requests won't be affected, and the client will reconnect, likely landing on a different apiserver after going through the load balancer again. This argument sets the fraction of requests that will be sent a GOAWAY. Clusters with single apiservers, or which don't use a load balancer, should NOT enable this. Min is 0 (off), Max is .02 (1/50 requests); .001 (1/1000) is a recommended starting point.
      --livez-grace-period duration                  This option represents the maximum amount of time it should take for apiserver to complete its startup sequence and become live. From apiserver's start time to when this amount of time has elapsed, /livez will assume that unfinished post-start hooks will complete successfully and therefore return true.
      --master-service-namespace string              DEPRECATED: the namespace from which the Kubernetes master services should be injected into pods. (default "default")
      --max-mutating-requests-inflight int           The maximum number of mutating requests in flight at a given time. When the server exceeds this, it rejects requests. Zero for no limit. (default 200)
      --max-requests-inflight int                    The maximum number of non-mutating requests in flight at a given time. When the server exceeds this, it rejects requests. Zero for no limit. (default 400)
      --min-request-timeout int                      An optional field indicating the minimum number of seconds a handler must keep a request open before timing it out. Currently only honored by the watch request handler, which picks a randomized value above this number as the connection timeout, to spread out load. (default 1800)
      --request-timeout duration                     An optional field indicating the duration a handler must keep a request open before timing it out. This is the default request timeout for requests but may be overridden by flags such as --min-request-timeout for specific types of requests. (default 1m0s)
      --shutdown-delay-duration duration             Time to delay the termination. During that time the server keeps serving requests normally and /healthz returns success, but /readyz immediately returns failure. Graceful termination starts after this delay has elapsed. This can be used to allow load balancer to stop sending traffic to this server.
      --target-ram-mb int                            Memory limit for apiserver in MB (used to configure sizes of caches, etc.)

Etcd flags:

      --default-watch-cache-size int             Default watch cache size. If zero, watch cache will be disabled for resources that do not have a default watch size set. (default 100)
      --delete-collection-workers int            Number of workers spawned for DeleteCollection call. These are used to speed up namespace cleanup. (default 1)
      --enable-garbage-collector                 Enables the generic garbage collector. MUST be synced with the corresponding flag of the kube-controller-manager. (default true)
      --encryption-provider-config string        The file containing configuration for encryption providers to be used for storing secrets in etcd
      --etcd-cafile string                       SSL Certificate Authority file used to secure etcd communication.
      --etcd-certfile string                     SSL certification file used to secure etcd communication.
      --etcd-compaction-interval duration        The interval of compaction requests. If 0, the compaction request from apiserver is disabled. (default 5m0s)
      --etcd-count-metric-poll-period duration   Frequency of polling etcd for number of resources per type. 0 disables the metric collection. (default 1m0s)
      --etcd-keyfile string                      SSL key file used to secure etcd communication.
      --etcd-prefix string                       The prefix to prepend to all resource paths in etcd. (default "/registry")
      --etcd-servers strings                     List of etcd servers to connect with (scheme://ip:port), comma separated.
      --etcd-servers-overrides strings           Per-resource etcd servers overrides, comma separated. The individual override format: group/resource#servers, where servers are URLs, semicolon separated.
      --storage-backend string                   The storage backend for persistence. Options: 'etcd3' (default).
      --storage-media-type string                The media type to use to store objects in storage. Some resources or storage backends may only support a specific media type and will ignore this setting. (default "application/vnd.kubernetes.protobuf")
      --watch-cache                              Enable watch caching in the apiserver (default true)
      --watch-cache-sizes strings                Watch cache size settings for some resources (pods, nodes, etc.), comma separated. The individual setting format: resource[.group]#size, where resource is lowercase plural (no version), group is omitted for resources of apiVersion v1 (the legacy core API) and included for others, and size is a number. It takes effect when watch-cache is enabled. Some resources (replicationcontrollers, endpoints, nodes, pods, services, apiservices.apiregistration.k8s.io) have system defaults set by heuristics, others default to default-watch-cache-size

Secure serving flags:

      --bind-address ip                        The IP address on which to listen for the --secure-port port. The associated interface(s) must be reachable by the rest of the cluster, and by CLI/web clients. If blank or an unspecified address (0.0.0.0 or ::), all interfaces will be used. (default 0.0.0.0)
      --cert-dir string                        The directory where the TLS certs are located. If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored. (default "/var/run/kubernetes")
      --http2-max-streams-per-connection int   The limit that the server gives to clients for the maximum number of streams in an HTTP/2 connection. Zero means to use golang's default.
      --secure-port int                        The port on which to serve HTTPS with authentication and authorization. It cannot be switched off with 0. (default 6443)
      --tls-cert-file string                   File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated after server cert). If HTTPS serving is enabled, and --tls-cert-file and --tls-private-key-file are not provided, a self-signed certificate and key are generated for the public address and saved to the directory specified by --cert-dir.
      --tls-cipher-suites strings              Comma-separated list of cipher suites for the server. If omitted, the default Go cipher suites will be use.  Possible values: TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_RC4_128_SHA,TLS_RSA_WITH_3DES_EDE_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_256_GCM_SHA384,TLS_RSA_WITH_RC4_128_SHA
      --tls-min-version string                 Minimum TLS version supported. Possible values: VersionTLS10, VersionTLS11, VersionTLS12, VersionTLS13
      --tls-private-key-file string            File containing the default x509 private key matching --tls-cert-file.
      --tls-sni-cert-key namedCertKey          A pair of x509 certificate and private key file paths, optionally suffixed with a list of domain patterns which are fully qualified domain names, possibly with prefixed wildcard segments. The domain patterns also allow IP addresses, but IPs should only be used if the apiserver has visibility to the IP address requested by a client. If no domain patterns are provided, the names of the certificate are extracted. Non-wildcard matches trump over wildcard matches, explicit domain patterns trump over extracted names. For multiple key/certificate pairs, use the --tls-sni-cert-key multiple times. Examples: "example.crt,example.key" or "foo.crt,foo.key:*.foo.com,foo.com". (default [])

Insecure serving flags:

      --address ip                 The IP address on which to serve the insecure --port (set to 0.0.0.0 for all IPv4 interfaces and :: for all IPv6 interfaces). (default 127.0.0.1) (DEPRECATED: see --bind-address instead.)
      --insecure-bind-address ip   The IP address on which to serve the --insecure-port (set to 0.0.0.0 for all IPv4 interfaces and :: for all IPv6 interfaces). (default 127.0.0.1) (DEPRECATED: This flag will be removed in a future version.)
      --insecure-port int          The port on which to serve unsecured, unauthenticated access. (default 8080) (DEPRECATED: This flag will be removed in a future version.)
      --port int                   The port on which to serve unsecured, unauthenticated access. Set to 0 to disable. (default 8080) (DEPRECATED: see --secure-port instead.)

Auditing flags:

      --audit-dynamic-configuration                 Enables dynamic audit configuration. This feature also requires the DynamicAuditing feature flag
      --audit-log-batch-buffer-size int             The size of the buffer to store events before batching and writing. Only used in batch mode. (default 10000)
      --audit-log-batch-max-size int                The maximum size of a batch. Only used in batch mode. (default 1)
      --audit-log-batch-max-wait duration           The amount of time to wait before force writing the batch that hadn't reached the max size. Only used in batch mode.
      --audit-log-batch-throttle-burst int          Maximum number of requests sent at the same moment if ThrottleQPS was not utilized before. Only used in batch mode.
      --audit-log-batch-throttle-enable             Whether batching throttling is enabled. Only used in batch mode.
      --audit-log-batch-throttle-qps float32        Maximum average number of batches per second. Only used in batch mode.
      --audit-log-format string                     Format of saved audits. "legacy" indicates 1-line text format for each event. "json" indicates structured json format. Known formats are legacy,json. (default "json")
      --audit-log-maxage int                        The maximum number of days to retain old audit log files based on the timestamp encoded in their filename.
      --audit-log-maxbackup int                     The maximum number of old audit log files to retain.
      --audit-log-maxsize int                       The maximum size in megabytes of the audit log file before it gets rotated.
      --audit-log-mode string                       Strategy for sending audit events. Blocking indicates sending events should block server responses. Batch causes the backend to buffer and write events asynchronously. Known modes are batch,blocking,blocking-strict. (default "blocking")
      --audit-log-path string                       If set, all requests coming to the apiserver will be logged to this file.  '-' means standard out.
      --audit-log-truncate-enabled                  Whether event and batch truncating is enabled.
      --audit-log-truncate-max-batch-size int       Maximum size of the batch sent to the underlying backend. Actual serialized size can be several hundreds of bytes greater. If a batch exceeds this limit, it is split into several batches of smaller size. (default 10485760)
      --audit-log-truncate-max-event-size int       Maximum size of the audit event sent to the underlying backend. If the size of an event is greater than this number, first request and response are removed, and if this doesn't reduce the size enough, event is discarded. (default 102400)
      --audit-log-version string                    API group and version used for serializing audit events written to log. (default "audit.k8s.io/v1")
      --audit-policy-file string                    Path to the file that defines the audit policy configuration.
      --audit-webhook-batch-buffer-size int         The size of the buffer to store events before batching and writing. Only used in batch mode. (default 10000)
      --audit-webhook-batch-max-size int            The maximum size of a batch. Only used in batch mode. (default 400)
      --audit-webhook-batch-max-wait duration       The amount of time to wait before force writing the batch that hadn't reached the max size. Only used in batch mode. (default 30s)
      --audit-webhook-batch-throttle-burst int      Maximum number of requests sent at the same moment if ThrottleQPS was not utilized before. Only used in batch mode. (default 15)
      --audit-webhook-batch-throttle-enable         Whether batching throttling is enabled. Only used in batch mode. (default true)
      --audit-webhook-batch-throttle-qps float32    Maximum average number of batches per second. Only used in batch mode. (default 10)
      --audit-webhook-config-file string            Path to a kubeconfig formatted file that defines the audit webhook configuration.
      --audit-webhook-initial-backoff duration      The amount of time to wait before retrying the first failed request. (default 10s)
      --audit-webhook-mode string                   Strategy for sending audit events. Blocking indicates sending events should block server responses. Batch causes the backend to buffer and write events asynchronously. Known modes are batch,blocking,blocking-strict. (default "batch")
      --audit-webhook-truncate-enabled              Whether event and batch truncating is enabled.
      --audit-webhook-truncate-max-batch-size int   Maximum size of the batch sent to the underlying backend. Actual serialized size can be several hundreds of bytes greater. If a batch exceeds this limit, it is split into several batches of smaller size. (default 10485760)
      --audit-webhook-truncate-max-event-size int   Maximum size of the audit event sent to the underlying backend. If the size of an event is greater than this number, first request and response are removed, and if this doesn't reduce the size enough, event is discarded. (default 102400)
      --audit-webhook-version string                API group and version used for serializing audit events written to webhook. (default "audit.k8s.io/v1")

Features flags:

      --contention-profiling   Enable lock contention profiling, if profiling is enabled
      --profiling              Enable profiling via web interface host:port/debug/pprof/ (default true)

Authentication flags:

      --anonymous-auth                                                                     Enables anonymous requests to the secure port of the API server. Requests that are not rejected by another authentication method are treated as anonymous requests. Anonymous requests have a username of system:anonymous, and a group name of system:unauthenticated. (default true)
      --api-audiences strings                                                              Identifiers of the API. The service account token authenticator will validate that tokens used against the API are bound to at least one of these audiences. If the --service-account-issuer flag is configured and this flag is not, this field defaults to a single element list containing the issuer URL.
      --authentication-token-webhook-cache-ttl duration                                    The duration to cache responses from the webhook token authenticator. (default 2m0s)
      --authentication-token-webhook-config-file string                                    File with webhook configuration for token authentication in kubeconfig format. The API server will query the remote service to determine authentication for bearer tokens.
      --authentication-token-webhook-version string                                        The API version of the authentication.k8s.io TokenReview to send to and expect from the webhook. (default "v1beta1")
      --client-ca-file string                                                              If set, any request presenting a client certificate signed by one of the authorities in the client-ca-file is authenticated with an identity corresponding to the CommonName of the client certificate.
      --enable-bootstrap-token-auth                                                        Enable to allow secrets of type 'bootstrap.kubernetes.io/token' in the 'kube-system' namespace to be used for TLS bootstrapping authentication.
      --oidc-ca-file string                                                                If set, the OpenID server's certificate will be verified by one of the authorities in the oidc-ca-file, otherwise the host's root CA set will be used.
      --oidc-client-id string                                                              The client ID for the OpenID Connect client, must be set if oidc-issuer-url is set.
      --oidc-groups-claim string                                                           If provided, the name of a custom OpenID Connect claim for specifying user groups. The claim value is expected to be a string or array of strings. This flag is experimental, please see the authentication documentation for further details.
      --oidc-groups-prefix string                                                          If provided, all groups will be prefixed with this value to prevent conflicts with other authentication strategies.
      --oidc-issuer-url string                                                             The URL of the OpenID issuer, only HTTPS scheme will be accepted. If set, it will be used to verify the OIDC JSON Web Token (JWT).
      --oidc-required-claim mapStringString                                                A key=value pair that describes a required claim in the ID Token. If set, the claim is verified to be present in the ID Token with a matching value. Repeat this flag to specify multiple claims.
      --oidc-signing-algs strings                                                          Comma-separated list of allowed JOSE asymmetric signing algorithms. JWTs with a 'alg' header value not in this list will be rejected. Values are defined by RFC 7518 https://tools.ietf.org/html/rfc7518#section-3.1. (default [RS256])
      --oidc-username-claim string                                                         The OpenID claim to use as the user name. Note that claims other than the default ('sub') is not guaranteed to be unique and immutable. This flag is experimental, please see the authentication documentation for further details. (default "sub")
      --oidc-username-prefix string                                                        If provided, all usernames will be prefixed with this value. If not provided, username claims other than 'email' are prefixed by the issuer URL to avoid clashes. To skip any prefixing, provide the value '-'.
      --requestheader-allowed-names strings                                                List of client certificate common names to allow to provide usernames in headers specified by --requestheader-username-headers. If empty, any client certificate validated by the authorities in --requestheader-client-ca-file is allowed.
      --requestheader-client-ca-file string                                                Root certificate bundle to use to verify client certificates on incoming requests before trusting usernames in headers specified by --requestheader-username-headers. WARNING: generally do not depend on authorization being already done for incoming requests.
      --requestheader-extra-headers-prefix strings                                         List of request header prefixes to inspect. X-Remote-Extra- is suggested.
      --requestheader-group-headers strings                                                List of request headers to inspect for groups. X-Remote-Group is suggested.
      --requestheader-username-headers strings                                             List of request headers to inspect for usernames. X-Remote-User is common.
      --service-account-issuer {service-account-issuer}/.well-known/openid-configuration   Identifier of the service account token issuer. The issuer will assert this identifier in "iss" claim of issued tokens. This value is a string or URI. If this option is not a valid URI per the OpenID Discovery 1.0 spec, the ServiceAccountIssuerDiscovery feature will remain disabled, even if the feature gate is set to true. It is highly recommended that this value comply with the OpenID spec: https://openid.net/specs/openid-connect-discovery-1_0.html. In practice, this means that service-account-issuer must be an https URL. It is also highly recommended that this URL be capable of serving OpenID discovery documents at {service-account-issuer}/.well-known/openid-configuration.
      --service-account-jwks-uri string                                                    Overrides the URI for the JSON Web Key Set in the discovery doc served at /.well-known/openid-configuration. This flag is useful if the discovery docand key set are served to relying parties from a URL other than the API server's external (as auto-detected or overridden with external-hostname). Only valid if the ServiceAccountIssuerDiscovery feature gate is enabled.
      --service-account-key-file stringArray                                               File containing PEM-encoded x509 RSA or ECDSA private or public keys, used to verify ServiceAccount tokens. The specified file can contain multiple keys, and the flag can be specified multiple times with different files. If unspecified, --tls-private-key-file is used. Must be specified when --service-account-signing-key is provided
      --service-account-lookup                                                             If true, validate ServiceAccount tokens exist in etcd as part of authentication. (default true)
      --service-account-max-token-expiration duration                                      The maximum validity duration of a token created by the service account token issuer. If an otherwise valid TokenRequest with a validity duration larger than this value is requested, a token will be issued with a validity duration of this value.
      --token-auth-file string                                                             If set, the file that will be used to secure the secure port of the API server via token authentication.

Authorization flags:

      --authorization-mode strings                              Ordered list of plug-ins to do authorization on secure port. Comma-delimited list of: AlwaysAllow,AlwaysDeny,ABAC,Webhook,RBAC,Node. (default [AlwaysAllow])
      --authorization-policy-file string                        File with authorization policy in json line by line format, used with --authorization-mode=ABAC, on the secure port.
      --authorization-webhook-cache-authorized-ttl duration     The duration to cache 'authorized' responses from the webhook authorizer. (default 5m0s)
      --authorization-webhook-cache-unauthorized-ttl duration   The duration to cache 'unauthorized' responses from the webhook authorizer. (default 30s)
      --authorization-webhook-config-file string                File with webhook configuration in kubeconfig format, used with --authorization-mode=Webhook. The API server will query the remote service to determine access on the API server's secure port.
      --authorization-webhook-version string                    The API version of the authorization.k8s.io SubjectAccessReview to send to and expect from the webhook. (default "v1beta1")

Cloud provider flags:

      --cloud-config string     The path to the cloud provider configuration file. Empty string for no configuration file.
      --cloud-provider string   The provider for cloud services. Empty string for no provider.

API enablement flags:

      --runtime-config mapStringString   A set of key=value pairs that enable or disable built-in APIs. Supported options are:
                                         v1=true|false for the core API group
                                         <group>/<version>=true|false for a specific API group and version (e.g. apps/v1=true)
                                         api/all=true|false controls all API versions
                                         api/ga=true|false controls all API versions of the form v[0-9]+
                                         api/beta=true|false controls all API versions of the form v[0-9]+beta[0-9]+
                                         api/alpha=true|false controls all API versions of the form v[0-9]+alpha[0-9]+
                                         api/legacy is deprecated, and will be removed in a future version

Egress selector flags:

      --egress-selector-config-file string   File with apiserver egress selector configuration.

Admission flags:

      --admission-control strings              Admission is divided into two phases. In the first phase, only mutating admission plugins run. In the second phase, only validating admission plugins run. The names in the below list may represent a validating plugin, a mutating plugin, or both. The order of plugins in which they are passed to this flag does not matter. Comma-delimited list of: AlwaysAdmit, AlwaysDeny, AlwaysPullImages, CertificateApproval, CertificateSigning, CertificateSubjectRestriction, DefaultIngressClass, DefaultStorageClass, DefaultTolerationSeconds, DenyEscalatingExec, DenyExecOnPrivileged, EventRateLimit, ExtendedResourceToleration, ImagePolicyWebhook, LimitPodHardAntiAffinityTopology, LimitRanger, MutatingAdmissionWebhook, NamespaceAutoProvision, NamespaceExists, NamespaceLifecycle, NodeRestriction, OwnerReferencesPermissionEnforcement, PersistentVolumeClaimResize, PersistentVolumeLabel, PodNodeSelector, PodPreset, PodSecurityPolicy, PodTolerationRestriction, Priority, ResourceQuota, RuntimeClass, SecurityContextDeny, ServiceAccount, StorageObjectInUseProtection, TaintNodesByCondition, ValidatingAdmissionWebhook. (DEPRECATED: Use --enable-admission-plugins or --disable-admission-plugins instead. Will be removed in a future version.)
      --admission-control-config-file string   File with admission control configuration.
      --disable-admission-plugins strings      admission plugins that should be disabled although they are in the default enabled plugins list (NamespaceLifecycle, LimitRanger, ServiceAccount, TaintNodesByCondition, Priority, DefaultTolerationSeconds, DefaultStorageClass, StorageObjectInUseProtection, PersistentVolumeClaimResize, RuntimeClass, CertificateApproval, CertificateSigning, CertificateSubjectRestriction, DefaultIngressClass, MutatingAdmissionWebhook, ValidatingAdmissionWebhook, ResourceQuota). Comma-delimited list of admission plugins: AlwaysAdmit, AlwaysDeny, AlwaysPullImages, CertificateApproval, CertificateSigning, CertificateSubjectRestriction, DefaultIngressClass, DefaultStorageClass, DefaultTolerationSeconds, DenyEscalatingExec, DenyExecOnPrivileged, EventRateLimit, ExtendedResourceToleration, ImagePolicyWebhook, LimitPodHardAntiAffinityTopology, LimitRanger, MutatingAdmissionWebhook, NamespaceAutoProvision, NamespaceExists, NamespaceLifecycle, NodeRestriction, OwnerReferencesPermissionEnforcement, PersistentVolumeClaimResize, PersistentVolumeLabel, PodNodeSelector, PodPreset, PodSecurityPolicy, PodTolerationRestriction, Priority, ResourceQuota, RuntimeClass, SecurityContextDeny, ServiceAccount, StorageObjectInUseProtection, TaintNodesByCondition, ValidatingAdmissionWebhook. The order of plugins in this flag does not matter.
      --enable-admission-plugins strings       admission plugins that should be enabled in addition to default enabled ones (NamespaceLifecycle, LimitRanger, ServiceAccount, TaintNodesByCondition, Priority, DefaultTolerationSeconds, DefaultStorageClass, StorageObjectInUseProtection, PersistentVolumeClaimResize, RuntimeClass, CertificateApproval, CertificateSigning, CertificateSubjectRestriction, DefaultIngressClass, MutatingAdmissionWebhook, ValidatingAdmissionWebhook, ResourceQuota). Comma-delimited list of admission plugins: AlwaysAdmit, AlwaysDeny, AlwaysPullImages, CertificateApproval, CertificateSigning, CertificateSubjectRestriction, DefaultIngressClass, DefaultStorageClass, DefaultTolerationSeconds, DenyEscalatingExec, DenyExecOnPrivileged, EventRateLimit, ExtendedResourceToleration, ImagePolicyWebhook, LimitPodHardAntiAffinityTopology, LimitRanger, MutatingAdmissionWebhook, NamespaceAutoProvision, NamespaceExists, NamespaceLifecycle, NodeRestriction, OwnerReferencesPermissionEnforcement, PersistentVolumeClaimResize, PersistentVolumeLabel, PodNodeSelector, PodPreset, PodSecurityPolicy, PodTolerationRestriction, Priority, ResourceQuota, RuntimeClass, SecurityContextDeny, ServiceAccount, StorageObjectInUseProtection, TaintNodesByCondition, ValidatingAdmissionWebhook. The order of plugins in this flag does not matter.

Metrics flags:

      --show-hidden-metrics-for-version string   The previous version for which you want to show hidden metrics. Only the previous minor version is meaningful, other values will not be allowed. The format is <major>.<minor>, e.g.: '1.16'. The purpose of this format is make sure you have the opportunity to notice if the next release hides additional metrics, rather than being surprised when they are permanently removed in the release after that.

Misc flags:

      --allow-privileged                          If true, allow privileged containers. [default=false]
      --apiserver-count int                       The number of apiservers running in the cluster, must be a positive number. (In use when --endpoint-reconciler-type=master-count is enabled.) (default 1)
      --enable-aggregator-routing                 Turns on aggregator routing requests to endpoints IP rather than cluster IP.
      --endpoint-reconciler-type string           Use an endpoint reconciler (master-count, lease, none) (default "lease")
      --event-ttl duration                        Amount of time to retain events. (default 1h0m0s)
      --kubelet-certificate-authority string      Path to a cert file for the certificate authority.
      --kubelet-client-certificate string         Path to a client cert file for TLS.
      --kubelet-client-key string                 Path to a client key file for TLS.
      --kubelet-https                             Use https for kubelet connections. (default true)
      --kubelet-preferred-address-types strings   List of the preferred NodeAddressTypes to use for kubelet connections. (default [Hostname,InternalDNS,InternalIP,ExternalDNS,ExternalIP])
      --kubelet-timeout duration                  Timeout for kubelet operations. (default 5s)
      --kubernetes-service-node-port int          If non-zero, the Kubernetes master service (which apiserver creates/maintains) will be of type NodePort, using this as the value of the port. If zero, the Kubernetes master service will be of type ClusterIP.
      --max-connection-bytes-per-sec int          If non-zero, throttle each user connection to this number of bytes/sec. Currently only applies to long-running requests.
      --proxy-client-cert-file string             Client certificate used to prove the identity of the aggregator or kube-apiserver when it must call out during a request. This includes proxying requests to a user api-server and calling out to webhook admission plugins. It is expected that this cert includes a signature from the CA in the --requestheader-client-ca-file flag. That CA is published in the 'extension-apiserver-authentication' configmap in the kube-system namespace. Components receiving calls from kube-aggregator should use that CA to perform their half of the mutual TLS verification.
      --proxy-client-key-file string              Private key for the client certificate used to prove the identity of the aggregator or kube-apiserver when it must call out during a request. This includes proxying requests to a user api-server and calling out to webhook admission plugins.
      --service-account-signing-key-file string   Path to the file that contains the current private key of the service account token issuer. The issuer will sign issued ID tokens with this private key. (Requires the 'TokenRequest' feature gate.)
      --service-cluster-ip-range string           A CIDR notation IP range from which to assign service cluster IPs. This must not overlap with any IP ranges assigned to nodes for pods.
      --service-node-port-range portRange         A port range to reserve for services with NodePort visibility. Example: '30000-32767'. Inclusive at both ends of the range. (default 30000-32767)

Global flags:

      --add-dir-header                   If true, adds the file directory to the header
      --alsologtostderr                  log to standard error as well as files
  -h, --help                             help for kube-apiserver
      --log-backtrace-at traceLocation   when logging hits line file:N, emit a stack trace (default :0)
      --log-dir string                   If non-empty, write log files in this directory
      --log-file string                  If non-empty, use this log file
      --log-file-max-size uint           Defines the maximum size a log file can grow to. Unit is megabytes. If the value is 0, the maximum file size is unlimited. (default 1800)
      --log-flush-frequency duration     Maximum number of seconds between log flushes (default 5s)
      --logtostderr                      log to standard error instead of files (default true)
      --skip-headers                     If true, avoid header prefixes in the log messages
      --skip-log-headers                 If true, avoid headers when opening log files
      --stderrthreshold severity         logs at or above this threshold go to stderr (default 2)
  -v, --v Level                          number for the log level verbosity
      --version version[=true]           Print version information and quit
      --vmodule moduleSpec               comma-separated list of pattern=N settings for file-filtered logging
brandond commented 4 years ago
Flag --insecure-port has been deprecated, This flag will be removed in a future version.
I0922 19:59:24.372160       1 server.go:618] external host was not specified, using 172.31.4.204
I0922 19:59:24.374198       1 server.go:148] Version: v1.18.8-beta20+rke2
Error: failed to create listener: failed to listen on 0.0.0.0:6443: listen tcp 0.0.0.0:6443: bind: address already in use

Is the old apiserver pod still running? Sounds like the kubelet isn't terminating the old static pod before staring the new one.

rancher-max commented 4 years ago

Is the old apiserver pod still running? Sounds like the kubelet isn't terminating the old static pod before staring the new one.

Nope only one pod is running:

$ k get pods -A
NAMESPACE     NAME                                                  READY   STATUS             RESTARTS   AGE
default       hello-575db49955-trtpx                                1/1     Running            0          78m
default       test                                                  1/1     Running            0          10m
kube-system   etcd-ip-172-31-4-204                                  1/1     Running            0          81m
kube-system   helm-install-rke2-canal-gt42k                         0/1     Completed          0          136m
kube-system   helm-install-rke2-coredns-5ch97                       0/1     Completed          0          136m
kube-system   helm-install-rke2-ingress-nginx-p25qq                 0/1     Completed          0          136m
kube-system   helm-install-rke2-kube-proxy-szlfh                    0/1     Completed          0          136m
kube-system   helm-install-rke2-metrics-server-8qwdl                0/1     Completed          0          136m
kube-system   kube-apiserver-ip-172-31-4-204                        0/1     CrashLoopBackOff   31         82m
kube-system   kube-controller-manager-ip-172-31-4-204               1/1     Running            0          82m
kube-system   kube-proxy-zgjd6                                      1/1     Running            0          136m
kube-system   kube-scheduler-ip-172-31-4-204                        1/1     Running            0          82m
kube-system   rke2-canal-xxkqn                                      2/2     Running            0          136m
kube-system   rke2-coredns-rke2-coredns-649896d599-m5zkt            1/1     Running            0          136m
kube-system   rke2-ingress-nginx-controller-d4989f458-wj8tm         1/1     Running            0          135m
kube-system   rke2-ingress-nginx-default-backend-65f75d6664-vxsmr   1/1     Running            0          135m
kube-system   rke2-metrics-server-5d8c549c9f-8jhhp                  1/1     Running            9          135m
brandond commented 4 years ago

what do you get from sudo lsof -nP -i tcp:6443

rancher-max commented 4 years ago
$ sudo lsof -nP -i tcp:6443
COMMAND     PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
kube-prox  3377 root   11u  IPv4 158575      0t0  TCP 127.0.0.1:34170->127.0.0.1:6443 (ESTABLISHED)
kube-apis 25521 root    5u  IPv6 158541      0t0  TCP *:6443 (LISTEN)
kube-apis 25521 root   76u  IPv6 159813      0t0  TCP 172.31.4.204:6443->172.31.4.204:16743 (ESTABLISHED)
kube-apis 25521 root   79u  IPv6 316796      0t0  TCP 127.0.0.1:6443->127.0.0.1:32810 (ESTABLISHED)
kube-apis 25521 root   82u  IPv6 316887      0t0  TCP 127.0.0.1:6443->127.0.0.1:32840 (ESTABLISHED)
kube-apis 25521 root   85u  IPv6 159822      0t0  TCP 127.0.0.1:6443->127.0.0.1:34170 (ESTABLISHED)
kube-apis 25521 root   90u  IPv6 160579      0t0  TCP 127.0.0.1:6443->127.0.0.1:34598 (ESTABLISHED)
kube-apis 25521 root   91u  IPv6 160661      0t0  TCP 127.0.0.1:6443->127.0.0.1:34606 (ESTABLISHED)
kube-apis 25521 root   92u  IPv6 163180      0t0  TCP 127.0.0.1:6443->127.0.0.1:34744 (ESTABLISHED)
kube-apis 25521 root   99u  IPv6 165728      0t0  TCP 172.31.4.204:6443->10.42.0.7:60766 (ESTABLISHED)
kube-apis 25521 root  102u  IPv6 159868      0t0  TCP 172.31.4.204:6443->10.42.0.4:34120 (ESTABLISHED)
kube-apis 25521 root  105u  IPv6 317737      0t0  TCP 127.0.0.1:6443->127.0.0.1:32860 (ESTABLISHED)
kube-apis 25521 root  109u  IPv6 159847      0t0  TCP 172.31.4.204:6443->172.31.4.204:57845 (ESTABLISHED)
kube-apis 25521 root  110u  IPv6 159351      0t0  TCP [::1]:58226->[::1]:6443 (ESTABLISHED)
kube-apis 25521 root  119u  IPv6 159856      0t0  TCP 172.31.4.204:6443->172.31.4.204:49563 (ESTABLISHED)
kube-apis 25521 root  121u  IPv6 159858      0t0  TCP [::1]:6443->[::1]:58226 (ESTABLISHED)
kube-sche 25837 root    6u  IPv4 160578      0t0  TCP 127.0.0.1:34598->127.0.0.1:6443 (ESTABLISHED)
kube-cont 25922 root    6u  IPv4 160931      0t0  TCP 127.0.0.1:34606->127.0.0.1:6443 (ESTABLISHED)
kube-cont 25922 root    7u  IPv4 163179      0t0  TCP 127.0.0.1:34744->127.0.0.1:6443 (ESTABLISHED)
rke2      65770 root    6u  IPv4 317580      0t0  TCP 127.0.0.1:32810->127.0.0.1:6443 (ESTABLISHED)
rke2      65770 root   12u  IPv4 317688      0t0  TCP 127.0.0.1:32840->127.0.0.1:6443 (ESTABLISHED)
kubelet   65805 root   11u  IPv4 317736      0t0  TCP 127.0.0.1:32860->127.0.0.1:6443 (ESTABLISHED)
brandond commented 4 years ago

It this output from a system that's still looping with the address already in use error? There is definitely an apiserver listening on 6443 - is that the new one, or the old one?

rancher-max commented 4 years ago

Yep, same system that I gathered the other information from. The current running rke2 and kubelet processes have id's 65770 and 65805 respectively, but I can't tell for kube-apiserver process id whether that one is from this run or a previous one.

rancher-max commented 4 years ago

The kube-apiserver issue has been tricky to recreate, so the overall issue here is resolved. Created https://github.com/rancher/rke2/issues/370 to address this specifically.