Skip to content

Commit b26ad6d

Browse files
Sync up release-line-0.3.21 to state before repo switch
Fixes DACH-NY/cn-test-failures#4467 CI should tell me if I missed anything important. To prevent adding something I shouldn't be, I compared with other branches on this repo; a bunch of stuff had to be removed by hand. [ci] Signed-off-by: Martin Florian <[email protected]>
1 parent c9456f8 commit b26ad6d

File tree

510 files changed

+50502
-602
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

510 files changed

+50502
-602
lines changed

.circleci/canton-scripts/check-logs.sh

Lines changed: 0 additions & 118 deletions
This file was deleted.

.circleci/canton-scripts/check-sbt-output.sh

Lines changed: 0 additions & 43 deletions
This file was deleted.

.circleci/canton-scripts/io-utils.sh

Lines changed: 0 additions & 54 deletions
This file was deleted.

.circleci/canton-scripts/split-canton-logs.sh

Lines changed: 0 additions & 47 deletions
This file was deleted.

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# For every file:
7+
# - unix-style newlines and a newline ending every file
8+
# - spaces as indent
9+
# - no trailing whitespace to reduce diff-noise
10+
[*]
11+
end_of_line = lf
12+
insert_final_newline = true
13+
indent_style = space
14+
trim_trailing_whitespace = true
15+
16+
[*.sh]
17+
indent_size = 2

.envrc.vars

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export POSTGRES_USER=postgres
2626
export POSTGRES_PASSWORD=postgres
2727

2828
export DEPLOYMENT_DIR="${SPLICE_ROOT}/cluster/deployment"
29+
export PULUMI_TEST_DIR=${SPLICE_ROOT}/cluster/pulumi
2930

3031
export GHCR=ghcr.io
3132
export DEV_REGISTRY=$GHCR/digital-asset/decentralized-canton-sync-dev

.idea/runConfigurations/Simple_topology.xml

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.k9s/plugins.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# $XDG_CONFIG_HOME/k9s/plugins.yaml
2+
plugins:
3+
4+
# Defines a plugin to provide a `ctrl-l` shortcut to tail the logs into lnav while in pod view.
5+
lnav:
6+
# Define a mnemonic to invoke the plugin
7+
shortCut: Ctrl-L
8+
# What will be shown on the K9s menu
9+
description: Pod logs (lnav)
10+
# Collections of views that support this shortcut. (You can use `all`)
11+
scopes:
12+
- pod
13+
# The command to run upon invocation. Can use Krew plugins here too!
14+
command: kubectl
15+
# Whether or not to run the command in background mode
16+
background: false
17+
# Defines the command arguments
18+
args:
19+
- lnav
20+
- -f
21+
- $NAME
22+
- -n
23+
- $NAMESPACE
24+
- --context
25+
- $CONTEXT
26+
watch-events:
27+
shortCut: Shift-E
28+
confirm: false
29+
description: Get Events
30+
scopes:
31+
- all
32+
command: sh
33+
background: false
34+
args:
35+
- -c
36+
- "kubectl events --context $CONTEXT --namespace $NAMESPACE --for $RESOURCE_NAME.$RESOURCE_GROUP/$NAME --watch"

0 commit comments

Comments
 (0)