Skip to content

Commit 224f08d

Browse files
TEST Ensure password 14 chars length on Kerberos FIPS tests (#79496) (#80648)
Co-authored-by: Albert Zaharovits <albert.zaharovits@elastic.co>
1 parent f5be4f6 commit 224f08d

File tree

2 files changed

+3
-3
lines changed
  • test/fixtures/krb5kdc-fixture/src/main/resources/provision
  • x-pack/qa/kerberos-tests

2 files changed

+3
-3
lines changed

test/fixtures/krb5kdc-fixture/src/main/resources/provision/peppa.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ set -e
55
addprinc.sh elasticsearch
66
addprinc.sh HTTP/localhost
77
addprinc.sh peppa
8-
addprinc.sh george dino
8+
addprinc.sh george dino_but_longer_than_14_chars
99

1010
# Use this as a signal that setup is complete
1111
python3 -m http.server 4444 &
1212

13-
sleep infinity
13+
sleep infinity

x-pack/qa/kerberos-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ tasks.named("integTest").configure {
5353
nonInputProperties.systemProperty 'test.userkt', "peppa@${realm}"
5454
nonInputProperties.systemProperty 'test.userkt.keytab', "${peppaKeytab}"
5555
nonInputProperties.systemProperty 'test.userpwd', "george@${realm}"
56-
systemProperty 'test.userpwd.password', "dino"
56+
systemProperty 'test.userpwd.password', "dino_but_longer_than_14_chars"
5757
systemProperty 'tests.security.manager', 'true'
5858
jvmArgs([
5959
"-Djava.security.krb5.conf=${project(':test:fixtures:krb5kdc-fixture').ext.krb5Conf("peppa")}",

0 commit comments

Comments
 (0)