PS C:\Windows\System32> wsl.exe --list --running |Format-Hex
...
Offset Bytes Ascii
00010203040506070809 0A 0B 0C 0D 0E 0F
------ ----------------------------------------------- -----
000000000000000000550062007500 6E 0074007500200028 U b u n t u (
00000000000000100044006500660061007500 6C 00740029 D e f a u l t )
000000000000002000
-- Grafana userCREATEUSERIFNOTEXISTS grafana IDENTIFIEDBY'password' SETTINGS max_execution_time CHANGEABLE_IN_READONLY, PROFILE `readonly`;
GRANT SELECT, SHOW ON *.* TO grafana;
-- otel_collectorCREATEUSERIFNOTEXISTS otel_collector IDENTIFIEDBY'password';
CREATE DATABASE IFNOTEXISTS otel;
GRANT CREATE, INSERT, SELECT, dictGet ON otel.* TO otel_collector;
We recommend users avoid doing excessive event processing using operators or transform processors. These can incur considerable memory and CPU overhead, especially JSON parsing. It is possible to do all processing in ClickHouse at insert time with materialized views and columns with some exceptions - specifically, context-aware enrichment e.g. adding of k8s metadata. For more details see Extracting structure with SQL.
...
We recommend users disable auto schema creation and create their tables manually. This allows modification of the primary and secondary keys, as well as the opportunity to introduce additional columns for optimizing query performance. For further details see Schema design.
$ kubewrapper __complete -p staging get po
-> wrapper 内部では以下のように解釈する
$ kubewrapper -p staging __complete get po
-> そうすると wrapper の機能で自然と __complete が打たれる
$ kubectl __complete --context foo --namespace bar get po
Please copy the following code into your Pulumi application. Not doing so
will cause Pulumi to report that an update will happen on the next update command.
Please note that the imported resources are marked as protected. To destroy them
you will need to remove the `protect` option and run `pulumi update` *before*
the destroy will take effect.
import pulumi
import pulumi_gcp as gcp
sa = gcp.serviceaccount.Account("sa",
account_id="sa",
display_name="sa",
project="XXXXX",
opts = pulumi.ResourceOptions(protect=True))
...