Use the helm --show-only parameter to generate the helm chart values.yaml from a helm template.
templates/values.yaml
secrets:
password: {{ randAlphaNum 10 | b64enc | quote }}
Use the helm --show-only parameter to generate the helm chart values.yaml from a helm template.
templates/values.yaml
secrets:
password: {{ randAlphaNum 10 | b64enc | quote }}
Docker Desktop stores docker data in 2 distros
These distros are installed on the system drive by default.
To move them to another drive, these distros can be exported, deleted and imported from the new location.
cl_abap_unit_assert=>assert_true( f_cut->check_werk_aktiv( iv_werks = lv_werks iv_keydate = lv_datum ) ). | |
cl_abap_unit_assert=>assert_true( f_cut->check_werk_aktiv( iv_werks = lv_werks iv_keydate = CONV d( lv_datum + 1 ) ) ). | |
cl_abap_unit_assert=>assert_true( f_cut->check_werk_aktiv( iv_werks = lv_werks iv_keydate = CONV d( lv_datum + 456 ) ) ). | |
cl_abap_unit_assert=>assert_false( f_cut->check_werk_aktiv( iv_werks = lv_werks iv_keydate = CONV d( lv_datum - 1 ) ) ). | |
cl_abap_unit_assert=>assert_false( f_cut->check_werk_aktiv( iv_werks = lv_werks iv_keydate = CONV d( lv_datum - 789 ) ) ). |
VALUE #( ( sign = 'I' option = 'EQ' low = 'somevalueortakeavar' ) ) |
val ints = intArrayOf(1,2,3) | |
val bytes = ints.map { it.toByte() }.toByteArray() |
[Function] | |
Command=/H | |
Type=SystemCommand |
DATA lo_digest TYPE Ref To cl_abap_message_digest. | |
DATA lv_timestamp TYPE timestampl. | |
DATA lv_hash_string TYPE string. | |
DATA lv_hash_base64 TYPE string. | |
* prepare test data | |
GET TIME STAMP FIELD lv_timestamp. |
DATA lo_digest TYPE Ref To cl_abap_message_digest. | |
DATA lv_timestamp TYPE timestampl. | |
DATA lv_int TYPE int4. | |
DATA lv_text TYPE string. | |
DATA lv_hash_string TYPE string. | |
DATA lv_hash_base64 TYPE string. | |
METHOD if_fpm_guibb_form_ext~needs_confirmation. | |
CASE io_event->mv_event_id. | |
WHEN io_event->gc_event_send. "filter the FPM event to show the message box for | |
CREATE OBJECT eo_confirmation_request "the framework will render this as message box | |
EXPORTING | |
iv_window_title = |Title for the message box window| | |
it_confirmation_text = VALUE #( |
Class CL_UUID_FACTORY is referenced in the sap standard documentation to create uuid's.