This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a change to branch io_uring_tpc_direct_io_socket_transfer
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit 398e2d19a gxhash, uuid v4
omit 0c83098b4 4096 alignment
omit d3439a23d socket transfer
omit 8bd47eaf2 improvements
omit 9583f4b52 feat(io_uring): implement directio and aligned PooledBuffer
add 6e0fdf7f1 feat(io_uring): fix pat/user/cg events (#1989)
add 2207416a8 feat(io_uring): merge master (#1991)
add 1991c2d2b fix(io_uring): fix compilation, fix leaking segment indexes,
fix detach (#1994)
add b9fb81dd4 feat(io_uring): fix stream/topic purge event handlers (#1996)
add 3e371b6d5 feat(io_uring): fix busy poll (#2002)
add 828e7e607 feat(io_uring): fix segment integration tests (#2005)
add a8dd63dc4 feat(io_uring): merge master (#2007)
add fed96239e feat(io_uring): fix shard integration tests (#2008)
add f2fc1b5c4 feat(io_uring): fix remaining integration tests (#2011)
add 8b2a3346f feat(io_uring): fix state integration tests (#2012)
add 3f1787ca0 feat(io_uring): fix config provider integration tests and
move tokio from workspace to integration cargo.toml (#2015)
add ae78182bf feat(io_uring): fix open descriptor when creating partition
on origin shard (#2016)
add d5da51de4 feat(io_uring): replace tokio s3 crate (#2020)
add 83d5ff595 feat(io_uring): revert config (#2023)
new 9e984026b feat(io_uring): implement directio and aligned PooledBuffer
new 57afcb4a9 improvements
new 7d9567fb5 socket transfer
new 0ec4c6568 4096 alignment
new bf33f9cc2 gxhash, uuid v4
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (398e2d19a)
\
N -- N -- N refs/heads/io_uring_tpc_direct_io_socket_transfer
(bf33f9cc2)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/changed-files-config.json | 3 +-
.github/workflows/ci-check-csharp-sdk.yml | 4 +-
.github/workflows/ci-check-go-sdk.yml | 15 +
.github/workflows/ci-test-bdd.yml | 2 +-
Cargo.lock | 992 +++++++++++++++++----
Cargo.toml | 4 +
DEPENDENCIES.md | 34 +
DISCLAIMER | 2 +-
LICENSE | 3 +-
NOTICE | 14 +-
PULL_REQUEST_TEMPLATE.md => PULL_REQUEST_TEMPLATE | 0
README.md | 18 +-
bdd/README.md | 7 +
bdd/{node => csharp}/Dockerfile | 13 +-
bdd/docker-compose.yml | 10 +
bdd/go/tests/tcp_test/client_feature_get_all.go | 26 +-
bdd/go/tests/tcp_test/consumers_feature_create.go | 65 +-
bdd/go/tests/tcp_test/consumers_feature_delete.go | 61 +-
bdd/go/tests/tcp_test/consumers_feature_get_all.go | 18 +-
.../tests/tcp_test/consumers_feature_get_by_id.go | 45 +-
bdd/go/tests/tcp_test/consumers_feature_join.go | 61 +-
bdd/go/tests/tcp_test/consumers_feature_leave.go | 59 +-
bdd/go/tests/tcp_test/consumers_steps.go | 126 +--
bdd/go/tests/tcp_test/messages_feature_send.go | 51 +-
bdd/go/tests/tcp_test/messages_steps.go | 30 +-
bdd/go/tests/tcp_test/partitions_feature_create.go | 40 +-
bdd/go/tests/tcp_test/partitions_feature_delete.go | 38 +-
bdd/go/tests/tcp_test/partitions_steps.go | 18 +-
bdd/go/tests/tcp_test/pat_feature_create.go | 12 +-
bdd/go/tests/tcp_test/pat_feature_delete.go | 12 +-
bdd/go/tests/tcp_test/pat_feature_get_all.go | 12 +-
bdd/go/tests/tcp_test/pat_steps.go | 22 +-
bdd/go/tests/tcp_test/ping_feature.go | 12 +-
bdd/go/tests/tcp_test/session_feature_login.go | 32 +-
bdd/go/tests/tcp_test/session_feature_logout.go | 12 +-
bdd/go/tests/tcp_test/stats_feature.go | 14 +-
bdd/go/tests/tcp_test/stream_feature_create.go | 30 +-
bdd/go/tests/tcp_test/stream_feature_delete.go | 22 +-
bdd/go/tests/tcp_test/stream_feature_get_all.go | 12 +-
bdd/go/tests/tcp_test/stream_feature_get_by_id.go | 16 +-
bdd/go/tests/tcp_test/stream_feature_update.go | 33 +-
bdd/go/tests/tcp_test/stream_steps.go | 81 +-
bdd/go/tests/tcp_test/tcp_suite_test.go | 8 +-
bdd/go/tests/tcp_test/test_helpers.go | 14 +-
bdd/go/tests/tcp_test/test_shared_steps.go | 20 +-
bdd/go/tests/tcp_test/topic_feature_create.go | 75 +-
bdd/go/tests/tcp_test/topic_feature_delete.go | 31 +-
bdd/go/tests/tcp_test/topic_feature_get_all.go | 17 +-
bdd/go/tests/tcp_test/topic_feature_get_by_id.go | 22 +-
bdd/go/tests/tcp_test/topic_feature_update.go | 62 +-
bdd/go/tests/tcp_test/topic_steps.go | 90 +-
bdd/go/tests/tcp_test/users_feature_create.go | 20 +-
bdd/go/tests/tcp_test/users_feature_delete.go | 20 +-
bdd/go/tests/tcp_test/users_feature_get_all.go | 16 +-
bdd/go/tests/tcp_test/users_feature_get_by_id.go | 13 +-
bdd/go/tests/tcp_test/users_feature_password.go | 20 +-
bdd/go/tests/tcp_test/users_feature_permissions.go | 19 +-
bdd/go/tests/tcp_test/users_feature_update.go | 19 +-
bdd/go/tests/tcp_test/users_steps.go | 116 ++-
core/bench/Cargo.toml | 1 +
core/bench/src/analytics/metrics/group.rs | 84 +-
core/bench/src/analytics/report_builder.rs | 60 +-
core/bench/src/analytics/time_series/calculator.rs | 5 +-
core/certs/iggy.pfx | Bin 2357 -> 2643 bytes
core/certs/iggy_cert.pem | 35 +-
core/certs/iggy_key.pem | 55 +-
core/common/src/locking/fast_async_lock.rs | 4 +-
core/common/src/locking/mod.rs | 2 +-
core/common/src/locking/tokio_lock.rs | 4 +-
core/configs/server.toml | 4 +-
.../postgres_sink}/Cargo.toml | 26 +-
core/connectors/sinks/postgres_sink/README.md | 188 ++++
core/connectors/sinks/postgres_sink/src/lib.rs | 298 +++++++
.../{random_source => postgres_source}/Cargo.toml | 25 +-
core/connectors/sources/postgres_source/README.md | 74 ++
core/connectors/sources/postgres_source/src/lib.rs | 690 ++++++++++++++
core/integration/Cargo.toml | 3 +-
core/integration/tests/archiver/disk.rs | 33 +-
core/integration/tests/archiver/mod.rs | 3 +-
core/integration/tests/archiver/s3.rs | 38 -
core/integration/tests/config_provider/mod.rs | 4 +-
core/integration/tests/state/file.rs | 8 +-
core/integration/tests/state/mod.rs | 5 +-
core/integration/tests/state/system.rs | 2 +-
.../tests/streaming/common/test_setup.rs | 5 +-
.../integration/tests/streaming/consumer_offset.rs | 4 +-
core/integration/tests/streaming/get_by_offset.rs | 3 +-
.../tests/streaming/get_by_timestamp.rs | 3 +-
core/integration/tests/streaming/messages.rs | 4 +-
core/integration/tests/streaming/partition.rs | 14 +-
core/integration/tests/streaming/segment.rs | 69 +-
core/integration/tests/streaming/shard.rs | 150 ++--
core/integration/tests/streaming/stream.rs | 13 +-
core/integration/tests/streaming/topic.rs | 10 +-
core/integration/tests/streaming/topic_messages.rs | 14 +-
core/sdk/src/clients/binary_consumer_group.rs | 2 +-
core/sdk/src/clients/binary_consumer_offset.rs | 2 +-
core/sdk/src/clients/binary_message.rs | 2 +-
core/sdk/src/clients/binary_partitions.rs | 2 +-
.../src/clients/binary_personal_access_tokens.rs | 2 +-
core/sdk/src/clients/binary_segments.rs | 2 +-
core/sdk/src/clients/binary_streams.rs | 2 +-
core/sdk/src/clients/binary_system.rs | 2 +-
core/sdk/src/clients/binary_topics.rs | 2 +-
core/sdk/src/clients/binary_users.rs | 2 +-
core/sdk/src/clients/client.rs | 2 +-
core/sdk/src/clients/consumer.rs | 2 +-
core/sdk/src/clients/producer.rs | 2 +-
core/sdk/src/clients/producer_builder.rs | 1 -
core/sdk/src/http/http_client.rs | 2 +-
core/server/Cargo.toml | 5 +-
core/server/src/archiver/disk.rs | 16 +-
core/server/src/archiver/mod.rs | 5 +
core/server/src/archiver/s3.rs | 207 ++++-
.../create_consumer_group_handler.rs | 11 +-
.../partitions/create_partitions_handler.rs | 7 +-
.../partitions/delete_partitions_handler.rs | 2 +-
.../create_personal_access_token_handler.rs | 11 +-
.../delete_personal_access_token_handler.rs | 7 +
.../handlers/streams/delete_stream_handler.rs | 4 +-
.../handlers/streams/purge_stream_handler.rs | 6 +
.../binary/handlers/topics/create_topic_handler.rs | 2 +-
.../binary/handlers/topics/delete_topic_handler.rs | 4 +-
.../binary/handlers/topics/purge_topic_handler.rs | 11 +-
.../handlers/users/change_password_handler.rs | 10 +-
.../binary/handlers/users/create_user_handler.rs | 9 +-
.../binary/handlers/users/delete_user_handler.rs | 8 +-
.../binary/handlers/users/logout_user_handler.rs | 7 +-
.../handlers/users/update_permissions_handler.rs | 6 +
.../binary/handlers/users/update_user_handler.rs | 9 +-
core/server/src/binary/mapper.rs | 2 +-
core/server/src/bootstrap.rs | 2 +-
core/server/src/channels/commands/mod.rs | 1 -
.../src/channels/commands/verify_heartbeats.rs | 2 +-
core/server/src/channels/handler.rs | 24 +-
core/server/src/channels/server_command.rs | 15 +-
core/server/src/http/jwt/jwt_manager.rs | 2 +-
core/server/src/http/mapper.rs | 2 +-
core/server/src/http/system.rs | 2 +-
core/server/src/io/fs_utils.rs | 22 +-
core/server/src/main.rs | 32 +-
core/server/src/server_error.rs | 8 +
core/server/src/shard/builder.rs | 9 +
core/server/src/shard/mod.rs | 285 ++++--
core/server/src/shard/system/clients.rs | 2 +-
core/server/src/shard/system/consumer_groups.rs | 67 +-
core/server/src/shard/system/partitions.rs | 2 +-
.../src/shard/system/personal_access_tokens.rs | 45 +-
core/server/src/shard/system/segments.rs | 5 +-
core/server/src/shard/system/stats.rs | 2 +-
core/server/src/shard/system/streams.rs | 65 +-
core/server/src/shard/system/topics.rs | 43 +-
core/server/src/shard/system/users.rs | 139 ++-
.../tasks/auxilary}/maintain_messages.rs | 342 +++----
core/server/src/shard/tasks/auxilary/mod.rs | 1 +
core/server/src/shard/tasks/mod.rs | 1 +
core/server/src/shard/transmission/event.rs | 20 +-
.../server/src/streaming/clients/client_manager.rs | 2 +-
.../server/src/streaming/partitions/persistence.rs | 2 +-
core/server/src/streaming/partitions/storage.rs | 6 -
.../src/streaming/segments/indexes/index_reader.rs | 2 +
.../src/streaming/segments/reading_messages.rs | 2 +-
core/server/src/streaming/segments/segment.rs | 1 +
.../src/streaming/segments/writing_messages.rs | 4 +-
core/server/src/streaming/streams/persistence.rs | 9 -
core/server/src/streaming/streams/topics.rs | 2 +-
.../server/src/streaming/topics/consumer_groups.rs | 25 +-
.../src/streaming/topics/consumer_offsets.rs | 2 +-
core/server/src/streaming/topics/messages.rs | 2 +-
core/server/src/streaming/topics/partitions.rs | 2 +-
core/server/src/streaming/topics/persistence.rs | 2 +-
core/server/src/streaming/topics/segments.rs | 2 +-
core/server/src/streaming/topics/storage.rs | 2 +-
core/server/src/streaming/topics/topic.rs | 2 +-
core/server/src/streaming/utils/file.rs | 4 -
core/server/src/tcp/tcp_tls_listener.rs | 22 +-
foreign/csharp/.dockerignore | 400 +++++++++
foreign/csharp/DEPENDENCIES.md | 1 +
foreign/csharp/Directory.Packages.props | 43 +-
.../Context/TestContext.cs} | 20 +-
.../Context/TestHooks.cs} | 45 +-
.../Iggy_SDK.Tests.BDD/Iggy_SDK.Tests.BDD.csproj | 44 +
foreign/csharp/Iggy_SDK.Tests.BDD/README.md | 21 +
.../BasicMessagingOperationsSteps.cs | 224 +++++
foreign/csharp/Iggy_SDK.sln | 6 +
foreign/csharp/Iggy_SDK/Mappers/BinaryMapper.cs | 3 +-
foreign/csharp/Iggy_SDK/Messages/Message.cs | 13 +
.../Iggy_SDK_Tests/MapperTests/BinaryMapper.cs | 1 +
foreign/go/README.md | 8 +
.../go/benchmarks/send_messages_benchmark_test.go | 32 +-
.../binary_request_serializer.go | 49 +-
.../binary_response_deserializer.go | 193 ++--
.../create_topic_serializer.go | 28 +-
.../fetch_messages_request_serializer_test.go | 9 +-
.../binary_serialization/identifier_serializer.go | 24 +-
.../identifier_serializer_test.go | 21 +-
.../send_messages_request_serializer_test.go | 6 +-
.../go/binary_serialization/stats_serializer.go | 14 +-
.../update_stream_serializer_test.go | 3 +-
.../update_topic_serializer.go | 21 +-
.../update_topic_serializer_test.go | 8 +-
.../{consumer.go => compression_algorithm.go} | 11 +-
foreign/go/contracts/consumer_groups.go | 18 +-
foreign/go/contracts/{config.go => duration.go} | 24 +-
foreign/go/contracts/identifier.go | 72 +-
foreign/go/contracts/messages.go | 2 +-
foreign/go/contracts/offets.go | 2 +-
foreign/go/contracts/partitions.go | 12 +-
foreign/go/contracts/stats.go | 14 +-
foreign/go/contracts/stream.go | 4 +-
foreign/go/contracts/topics.go | 22 +-
foreign/go/errors/constants.go | 4 +
foreign/go/iggycli/client.go | 148 ++-
foreign/go/iggycli/iggy_client.go | 10 +-
foreign/go/samples/consumer/consumer.go | 34 +-
foreign/go/samples/producer/message_generator.go | 29 +-
foreign/go/samples/producer/producer.go | 30 +-
foreign/go/tcp/tcp_access_token_managament.go | 16 +-
foreign/go/tcp/tcp_clients_managament.go | 12 +-
foreign/go/tcp/tcp_consumer_group_managament.go | 28 +-
foreign/go/tcp/tcp_core.go | 21 +-
foreign/go/tcp/tcp_messaging.go | 24 +-
foreign/go/tcp/tcp_offset_managament.go | 14 +-
foreign/go/tcp/tcp_partition_managament.go | 14 +-
foreign/go/tcp/tcp_session_managament.go | 14 +-
foreign/go/tcp/tcp_stream_managament.go | 22 +-
foreign/go/tcp/tcp_topic_managament.go | 40 +-
foreign/go/tcp/tcp_user_managament.go | 38 +-
foreign/go/tcp/tcp_utilities.go | 8 +-
foreign/node/src/wire/client/get-client.command.ts | 5 +-
.../node/src/wire/client/get-clients.command.ts | 5 +-
foreign/node/src/wire/client/get-me.command.ts | 4 +-
foreign/node/src/wire/command-set.ts | 17 +-
foreign/node/src/wire/command.code.ts | 94 +-
.../wire/consumer-group/create-group.command.ts | 4 +-
.../wire/consumer-group/delete-group.command.ts | 3 +-
.../src/wire/consumer-group/get-group.command.ts | 4 +-
.../src/wire/consumer-group/get-groups.command.ts | 4 +-
.../src/wire/consumer-group/join-group.command.ts | 4 +-
.../src/wire/consumer-group/leave-group.command.ts | 3 +-
.../flush-unsaved-buffers.command.ts} | 20 +-
foreign/node/src/wire/message/message.utils.ts | 21 +-
.../node/src/wire/message/poll-messages.command.ts | 3 +-
.../node/src/wire/message/send-messages.command.ts | 3 +-
.../delete-offset.command.ts} | 24 +-
foreign/node/src/wire/offset/get-offset.command.ts | 4 +-
.../node/src/wire/offset/store-offset.command.ts | 4 +-
.../src/wire/partition/create-partition.command.ts | 6 +-
.../src/wire/partition/delete-partition.command.ts | 8 +-
foreign/node/src/wire/partition/partition.utils.ts | 4 +-
.../delete-segments.command.ts} | 24 +-
.../{session/login.type.ts => segment/index.ts} | 4 +-
.../segment.utils.ts} | 14 +-
foreign/node/src/wire/session/index.ts | 1 +
.../src/wire/session/login-with-token.command.ts | 24 +-
foreign/node/src/wire/session/login.command.ts | 72 +-
foreign/node/src/wire/session/login.utils.ts | 79 ++
foreign/node/src/wire/session/logout.command.ts | 6 +-
.../node/src/wire/stream/create-stream.command.ts | 4 +-
.../node/src/wire/stream/delete-stream.command.ts | 4 +-
foreign/node/src/wire/stream/get-stream.command.ts | 4 +-
.../node/src/wire/stream/get-streams.command.ts | 6 +-
.../node/src/wire/stream/purge-stream.command.ts | 4 +-
.../node/src/wire/stream/update-stream.command.ts | 4 +-
foreign/node/src/wire/system/get-stats.command.ts | 146 +--
foreign/node/src/wire/system/ping.command.ts | 7 +-
.../node/src/wire/token/create-token.command.ts | 24 +-
.../node/src/wire/token/delete-token.command.ts | 9 +-
foreign/node/src/wire/token/get-tokens.command.ts | 4 +-
.../node/src/wire/topic/create-topic.command.ts | 6 +-
.../node/src/wire/topic/delete-topic.command.ts | 4 +-
foreign/node/src/wire/topic/get-topic.command.ts | 4 +-
foreign/node/src/wire/topic/get-topics.command.ts | 3 +-
foreign/node/src/wire/topic/purge-topic.command.ts | 4 +-
.../node/src/wire/topic/update-topic.command.ts | 4 +-
.../node/src/wire/user/change-password.command.ts | 4 +-
foreign/node/src/wire/user/create-user.command.ts | 5 +-
foreign/node/src/wire/user/delete-user.command.ts | 4 +-
foreign/node/src/wire/user/get-user.command.ts | 9 +-
foreign/node/src/wire/user/get-users.command.ts | 5 +-
.../src/wire/user/update-permissions.command.ts | 7 +-
foreign/node/src/wire/user/update-user.command.ts | 9 +-
foreign/python/README.md | 6 +-
helm/README.md | 5 +
helm/charts/iggy-server/.helmignore | 23 +
.../charts/iggy-server/Chart.yaml | 23 +-
helm/charts/iggy-server/README.md | 53 ++
helm/charts/iggy-server/templates/NOTES.txt | 22 +
helm/charts/iggy-server/templates/_helpers.tpl | 67 ++
helm/charts/iggy-server/templates/deployment.yaml | 85 ++
helm/charts/iggy-server/templates/hpa.yaml | 45 +
helm/charts/iggy-server/templates/ingress.yaml | 78 ++
.../charts/iggy-server/templates/service.yaml | 39 +-
.../iggy-server/templates/serviceaccount.yaml | 22 +-
.../iggy-server/templates/servicemonitor.yaml | 39 +-
helm/charts/iggy-server/values.yaml | 125 +++
helm/charts/iggy-ui/.helmignore | 23 +
.../charts/iggy-ui/Chart.yaml | 23 +-
helm/charts/iggy-ui/README.md | 47 +
helm/charts/iggy-ui/templates/NOTES.txt | 22 +
helm/charts/iggy-ui/templates/_helpers.tpl | 67 ++
helm/charts/iggy-ui/templates/deployment.yaml | 83 ++
helm/charts/iggy-ui/templates/ingress.yaml | 78 ++
.../charts/iggy-ui/templates/service.yaml | 25 +-
.../charts/iggy-ui/templates/serviceaccount.yaml | 22 +-
helm/charts/iggy-ui/values.yaml | 105 +++
DEPENDENCIES.md => scripts/DEPENDENCIES.md | 1 -
scripts/prepare-release.sh | 116 ++-
scripts/run-bdd-tests.sh | 12 +-
309 files changed, 7355 insertions(+), 2793 deletions(-)
rename PULL_REQUEST_TEMPLATE.md => PULL_REQUEST_TEMPLATE (100%)
copy bdd/{node => csharp}/Dockerfile (79%)
copy core/connectors/{sources/random_source => sinks/postgres_sink}/Cargo.toml
(75%)
create mode 100644 core/connectors/sinks/postgres_sink/README.md
create mode 100644 core/connectors/sinks/postgres_sink/src/lib.rs
copy core/connectors/sources/{random_source => postgres_source}/Cargo.toml
(75%)
create mode 100644 core/connectors/sources/postgres_source/README.md
create mode 100644 core/connectors/sources/postgres_source/src/lib.rs
delete mode 100644 core/integration/tests/archiver/s3.rs
rename core/server/src/{channels/commands =>
shard/tasks/auxilary}/maintain_messages.rs (59%)
create mode 100644 core/server/src/shard/tasks/auxilary/mod.rs
create mode 100644 foreign/csharp/.dockerignore
copy foreign/csharp/{Iggy_SDK.Tests.Integration/Helpers/StreamFactory.cs =>
Iggy_SDK.Tests.BDD/Context/TestContext.cs} (65%)
copy foreign/csharp/{Iggy_SDK.Tests.Integration/Attributes/SkipTcpAttribute.cs
=> Iggy_SDK.Tests.BDD/Context/TestHooks.cs} (58%)
create mode 100644 foreign/csharp/Iggy_SDK.Tests.BDD/Iggy_SDK.Tests.BDD.csproj
create mode 100644 foreign/csharp/Iggy_SDK.Tests.BDD/README.md
create mode 100644
foreign/csharp/Iggy_SDK.Tests.BDD/StepDefinitions/BasicMessagingOperationsSteps.cs
copy foreign/go/contracts/{consumer.go => compression_algorithm.go} (83%)
copy foreign/go/contracts/{config.go => duration.go} (63%)
copy foreign/node/src/wire/{offset/store-offset.command.ts =>
message/flush-unsaved-buffers.command.ts} (69%)
copy foreign/node/src/wire/{consumer-group/delete-group.command.ts =>
offset/delete-offset.command.ts} (62%)
copy foreign/node/src/wire/{partition/create-partition.command.ts =>
segment/delete-segments.command.ts} (67%)
rename foreign/node/src/wire/{session/login.type.ts => segment/index.ts} (94%)
copy foreign/node/src/wire/{partition/partition.utils.ts =>
segment/segment.utils.ts} (76%)
create mode 100644 foreign/node/src/wire/session/login.utils.ts
create mode 100644 helm/README.md
create mode 100644 helm/charts/iggy-server/.helmignore
copy Dockerfile.cross.dockerignore => helm/charts/iggy-server/Chart.yaml (77%)
create mode 100644 helm/charts/iggy-server/README.md
create mode 100644 helm/charts/iggy-server/templates/NOTES.txt
create mode 100644 helm/charts/iggy-server/templates/_helpers.tpl
create mode 100644 helm/charts/iggy-server/templates/deployment.yaml
create mode 100644 helm/charts/iggy-server/templates/hpa.yaml
create mode 100644 helm/charts/iggy-server/templates/ingress.yaml
copy Dockerfile => helm/charts/iggy-server/templates/service.yaml (57%)
copy Dockerfile.ci.dockerignore =>
helm/charts/iggy-server/templates/serviceaccount.yaml (70%)
copy Dockerfile => helm/charts/iggy-server/templates/servicemonitor.yaml (55%)
create mode 100644 helm/charts/iggy-server/values.yaml
create mode 100644 helm/charts/iggy-ui/.helmignore
copy Dockerfile.cross.dockerignore => helm/charts/iggy-ui/Chart.yaml (78%)
create mode 100644 helm/charts/iggy-ui/README.md
create mode 100644 helm/charts/iggy-ui/templates/NOTES.txt
create mode 100644 helm/charts/iggy-ui/templates/_helpers.tpl
create mode 100644 helm/charts/iggy-ui/templates/deployment.yaml
create mode 100644 helm/charts/iggy-ui/templates/ingress.yaml
copy Dockerfile.ci.dockerignore => helm/charts/iggy-ui/templates/service.yaml
(68%)
copy Dockerfile.ci.dockerignore =>
helm/charts/iggy-ui/templates/serviceaccount.yaml (71%)
create mode 100644 helm/charts/iggy-ui/values.yaml
copy DEPENDENCIES.md => scripts/DEPENDENCIES.md (99%)