This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo vim /etc/systemd/system/docker-compose.service | |
[Unit] | |
Description=DockerCompose | |
After=docker.service | |
Requires=docker.service | |
[Service] | |
ExecStart=/opt/bin/docker-compose -f /home/core/docker-compose.yml up -d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export OS_USERNAME=admin | |
export OS_PASSWORD=keadmin | |
export OS_PROJECT_NAME=admin | |
export OS_USER_DOMAIN_NAME=default | |
export OS_PROJECT_DOMAIN_NAME=default | |
export OS_AUTH_URL=http://127.0.0.1:8357/v3 | |
export OS_IDENTITY_API_VERSION=3 | |
openstack service create --name registry ke-service | |
openstack service create --name helm-registry ke-service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: wp-config-{{.Release.Name}} | |
data: | |
mysql_root_password: {{.Values.mysqlPassword}} | |
wordpress_db_password: {{.Values.wordpressPassword}} | |
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>ACPI</key> | |
<dict> | |
<key>Add</key> | |
<array> | |
<dict> | |
<key>Comment</key> |