You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It enforces a size limit of 1MB on the input string to prevent creating objects too large for Kubernetes Secrets. It also enforces a size limit of 1MB on the decompressed output and verifies that the content is valid UTF-8 text.
1643
+
1644
+
### zstd
1645
+
1646
+
The `zstd` function compresses a string using Zstd and returns a Base64 encoded result.
1647
+
1648
+
```
1649
+
zstd "Hello world!"
1650
+
```
1651
+
1652
+
It enforces a size limit of 1MB on the output to prevent creating objects too large for Kubernetes Secrets/ConfigMap.
1653
+
1654
+
### unzstd
1655
+
1656
+
The `unzstd` function decodes a Base64 encoded string and then decompresses it using Zstd.
1657
+
1658
+
```
1659
+
"KLUv/QQAYQAASGVsbG8gd29ybGQhsn39fw==" | unzstd
1660
+
```
1661
+
1662
+
It enforces a size limit of 1MB on the input string to prevent creating objects too large for Kubernetes Secrets. It also enforces a size limit of 1MB on the decompressed output and verifies that the content is valid UTF-8 text.
1663
+
1664
+
### lz4
1665
+
1666
+
The `lz4` function compresses a string using LZ4 and returns a Base64 encoded result.
1667
+
1668
+
```
1669
+
lz4 "Hello world!"
1670
+
```
1671
+
1672
+
It enforces a size limit of 1MB on the output to prevent creating objects too large for Kubernetes Secrets/ConfigMap.
1673
+
1674
+
### unlz4
1675
+
1676
+
The `unlz4` function decodes a Base64 encoded string and then decompresses it using LZ4.
It enforces a size limit of 1MB on the input string to prevent creating objects too large for Kubernetes Secrets. It also enforces a size limit of 1MB on the decompressed output and verifies that the content is valid UTF-8 text.
1683
+
1684
+
### snappy
1685
+
1686
+
The `snappy` function compresses a string using Snappy and returns a Base64 encoded result.
1687
+
1688
+
```
1689
+
snappy "Hello world!"
1690
+
```
1691
+
1692
+
It enforces a size limit of 1MB on the output to prevent creating objects too large for Kubernetes Secrets/ConfigMap.
1693
+
1694
+
### unsnappy
1695
+
1696
+
The `unsnappy` function decodes a Base64 encoded string and then decompresses it using Snappy.
1697
+
1698
+
```
1699
+
"DCxIZWxsbyB3b3JsZCE=" | unsnappy
1700
+
```
1701
+
1702
+
It enforces a size limit of 1MB on the input string to prevent creating objects too large for Kubernetes Secrets. It also enforces a size limit of 1MB on the decompressed output and verifies that the content is valid UTF-8 text.
1703
+
1704
+
### brotli
1705
+
1706
+
The `brotli` function compresses a string using Brotli and returns a Base64 encoded result.
1707
+
1708
+
```
1709
+
brotli "Hello world!"
1710
+
```
1711
+
1712
+
It enforces a size limit of 1MB on the output to prevent creating objects too large for Kubernetes Secrets/ConfigMap.
1713
+
1714
+
### unbrotli
1715
+
1716
+
The `unbrotli` function decodes a Base64 encoded string and then decompresses it using Brotli.
1717
+
1718
+
```
1719
+
"GwsAACRBQpBKkUVq+pw1CQ==" | unbrotli
1720
+
```
1721
+
1722
+
It enforces a size limit of 1MB on the input string to prevent creating objects too large for Kubernetes Secrets. It also enforces a size limit of 1MB on the decompressed output and verifies that the content is valid UTF-8 text.
1723
+
1724
+
1611
1725
## Lists and List Functions
1612
1726
1613
1727
Helm provides a simple `list` type that can contain arbitrary sequential lists
0 commit comments