Processing blobs: 151372
Processing trees: 55915
Processing commits: 25504
Matching commits to trees: 25504
Processing annotated tags: 0
Processing references: 3
| Name | Value | Level of concern |
| ---------------------------- | --------- | ------------------------------ |
| Overall repository size | | |
| * Trees | | |
| * Total size | 30.6 GiB | **************** |
| * Total tree entries | 846 M | **************** |
| | | |
| Biggest objects | | |
| * Trees | | |
| * Maximum entries [1] | 50.4 k | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
| | | |
| Biggest checkouts | | |
| * Number of files [2] | 55.6 k | * |
# kubectl get pod/argocd-applicationset-controller-5f975ff5-97mx5 -n argocd -o yaml | grep status: -A10
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2024-01-29T10:53:39Z"
message: 'The node was low on resource: ephemeral-storage. Threshold quantity:
1046402268, available: 683620Ki. '
reason: TerminationByKubelet
# kubectl get pod/argocd-applicationset-controller-5f975ff5-97mx5 -n argocd -o yaml | grep status: -A10
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2024-01-29T10:53:39Z"
message: 'The node was low on resource: ephemeral-storage. Threshold quantity:
1046402268, available: 683620Ki. '
reason: TerminationByKubelet
# dpkg -i ./libaxtls1_2.1.5+ds-1build2_amd64.deb
Selecting previously unselected package libaxtls1:amd64.
(Reading database ... 66185 files and directories currently installed.)
Preparing to unpack .../libaxtls1_2.1.5+ds-1build2_amd64.deb ...
Unpacking libaxtls1:amd64 (2.1.5+ds-1build2) ...
Setting up libaxtls1:amd64 (2.1.5+ds-1build2) ...
Processing triggers for libc-bin (2.23-0ubuntu11.2) ...
# ldconfig -v | grep axtls
...
libaxtls.so.1 -> libaxtls.so.1.2
# find / -name libaxtls.so*
/usr/lib/x86_64-linux-gnu/libaxtls.so.1.2
/usr/lib/x86_64-linux-gnu/libaxtls.so.1
# ./configure --with-zlib --with-ssl --disable-shared
...
curl version: 7.37.1
Host setup: x86_64-unknown-linux-gnu
Install prefix: /usr/local
Compiler: gcc
SSL support: no (--with-{ssl,gnutls,nss,polarssl,cyassl,axtls,winssl,darwinssl} )
# cat ./config.log | grep "\-laxtls"
...
/usr/bin/ld: cannot find -laxtls
wget https://www.openssl.org/source/openssl-1.0.2g.tar.gz
tar xzf openssl-1.0.2g.tar.gz
cd openssl-1.0.2g/
./config
make
./apps/openssl version
WARNING: can't open config file: /usr/local/ssl/openssl.cnf
OpenSSL 1.0.2g 1 Mar 2016
# pwd
/opt/openssl-1.0.2g
wget https://curl.se/download/curl-7.47.0.tar.gz
tar xzf curl-7.47.0.tar.gz
./configure --with-ssl="/opt/openssl-1.0.2g" --disable-shared
curl version: 7.47.0
Host setup: x86_64-pc-linux-gnu
Install prefix: /usr/local
Compiler: gcc
SSL support: no (--with-{ssl,gnutls,nss,polarssl,mbedtls,cyassl,axtls,winssl,darwinssl} )
/usr/lib64/gcc/x86_64-suse-linux/13/../../../../x86_64-suse-linux/bin/ld: cannot find -laxtls: No such file or directory
configure:24378: checking for ssl_version in -laxtls
configure:24400: gcc -o conftest -O2 -Wno-system-headers conftest.c -laxtls >&5
/usr/lib64/gcc/x86_64-suse-linux/13/../../../../x86_64-suse-linux/bin/ld: cannot find -laxtls: No such file or directory
collect2: error: ld returned 1 exit status
configure:24400: $? = 1
configure: failed program was:
| /* confdefs.h */
...
| }
configure:24409: result: no
configure:24442: WARNING: SSL disabled, you will not be able to use HTTPS, FTPS, NTLM and more.
configure:24444: WARNING: Use --with-ssl, --with-gnutls, --with-polarssl, --with-cyassl, --with-nss, --with-axtls, --with-winssl, or --with-darwinssl to address this.
# whereis ssl
ssl: /etc/ssl /usr/share/ssl /usr/share/man/man7/ssl.73ssl.gz
/opt/curl-7.47.0 # ./configure --with-ssl=/etc/ssl
checking whether to enable maintainer-specific portions of M
...
configure: WARNING: SSL disabled, you will not be able to use HTTPS, FTPS, NTLM and more.
configure: WARNING: Use --with-ssl, --with-gnutls, --with-polarssl, --with-cyassl, --with-nss, --with-axtls, --with-winssl, or --with-darwinssl to address this.
...
configure: Configured to build curl/libcurl:
curl version: 7.47.0
Host setup: x86_64-pc-linux-gnu
Install prefix: /usr/local
Compiler: gcc
SSL support: no (--with-{ssl,gnutls,nss,polarssl,mbedtls,cyassl,axtls,winssl,darwinssl} )
SSH support: no (--with-libssh2)
...