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 { |
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
-- DROP SCHEMA public; | |
CREATE SCHEMA public AUTHORIZATION pg_database_owner; | |
COMMENT ON SCHEMA public IS 'standard public schema'; | |
-- DROP TYPE public."account_based_product_code_list_type"; | |
CREATE TYPE public."account_based_product_code_list_type" AS ENUM ( | |
'HSA', |
NewerOlder