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
Defaulted container "topolvm-node" out of: topolvm-node, csi-registrar, liveness-probe | |
{"level":"info","ts":"2025-06-25T01:09:42Z","logger":"setup","msg":"starting manager"} | |
{"level":"info","ts":"2025-06-25T01:09:42Z","logger":"controller-runtime.metrics","msg":"Starting metrics server"} | |
{"level":"info","ts":"2025-06-25T01:09:42Z","logger":"controller-runtime.metrics","msg":"Serving metrics server","bindAddress":":8080","secure":false} | |
{"level":"info","ts":"2025-06-25T01:09:42Z","msg":"Starting EventSource","controller":"logicalvolume","controllerGroup":"topolvm.io","controllerKind":"LogicalVolume","source":"kind source: *v1.LogicalVolume"} | |
{"level":"info","ts":"2025-06-25T01:09:42Z","msg":"Starting Controller","controller":"logicalvolume","controllerGroup":"topolvm.io","controllerKind":"LogicalVolume"} | |
{"level":"info","ts":"2025-06-25T01:09:42Z","msg":"Starting workers","controller":"logicalvolume","controllerGroup":"topolvm.io","controllerKind":"LogicalVolume","worker count":1} | |
{"level":"info","ts":"2025-06 |
This file has been truncated, but you can view the full file.
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"version": "4.3.0", | |
"title": "PersonType", | |
"description": "A schema that represents all of the information of a person.", | |
"type": "object", | |
"allOf": [ | |
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"version": "4.3.0", |
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
[0;32m[OK][0m kubectl is available | |
=== Kubernetes Pod Status === | |
Checking pods in namespace: [1;33mtopolvm-system[0m | |
Pod: [1;33mtopolvm-controller-6fc6bcd4b5-q8t6t[0m | |
Status: Running | Containers: 5 | Ready: true/true/true/true/true | |
Pod: [1;33mtopolvm-controller-6fc6bcd4b5-tgkc8[0m | |
Status: Running | Containers: 5 | Ready: true/true/true/true/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
[0;32m[OK][0m kubectl is available | |
=== Kubernetes Pod Status === | |
Checking pods in namespace: [1;33mtopolvm-system[0m | |
Pod: [1;33mtopolvm-controller-6fc6bcd4b5-q9b8m[0m | |
Status: Running | Containers: 5 | Ready: true/true/true/true/true | |
Pod: [1;33mtopolvm-controller-6fc6bcd4b5-smpqp[0m | |
Status: Running | Containers: 5 | Ready: true/true/true/true/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
[0;32m[OK][0m kubectl is available | |
=== Kubernetes Pod Status === | |
Checking pods in namespace: [1;33mtopolvm-system[0m | |
Pod: [1;33mtopolvm-controller-6fc6bcd4b5-kjrlh[0m | |
Status: Pending | Containers: 5 | Ready: false/false/false/false/false | |
[1;33m[WARN][0m Pod is in Pending state | |
Recent events: | |
LAST SEEN TYPE REASON OBJECT MESSAGE |
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
[0;32m[OK][0m kubectl is available | |
=== Kubernetes Pod Status === | |
Checking pods in namespace: [1;33mtopolvm-system[0m | |
Pod: [1;33mtopolvm-controller-6fc6bcd4b5-kjrlh[0m | |
Status: Pending | Containers: 5 | Ready: false/false/false/false/false | |
[1;33m[WARN][0m Pod is in Pending state | |
Recent events: | |
LAST SEEN TYPE REASON OBJECT MESSAGE |
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
[0;32m[OK][0m kubectl is available | |
=== Kubernetes Pod Status === | |
Checking pods in namespace: [1;33mtopolvm-system[0m | |
Pod: [1;33mtopolvm-controller-6fc6bcd4b5-kjrlh[0m | |
Status: Pending | Containers: 5 | Ready: false/false/false/false/false | |
[1;33m[WARN][0m Pod is in Pending state | |
Recent events: | |
LAST SEEN TYPE REASON OBJECT MESSAGE |
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
import { assign, setup } from 'xstate'; | |
function executeAction() { | |
console.log('executing action'); | |
} | |
export type ConfirmationDialogMachineEvent = | |
| { type: 'OPEN_DIALOG'; action: void } | |
| { type: 'CONFIRM' } | |
| { type: 'CANCEL' }; |
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
import { assign, createMachine, fromPromise } from 'xstate'; | |
import { setup } from 'xstate'; | |
function executeAction() { | |
console.log('FSM: Executing action...'); | |
}; | |
export interface ConfirmationDialogMachineContext { |
NewerOlder