Skip to content

Commit 54bdcbe

Browse files
committed
Change italic styling
1 parent 35f173b commit 54bdcbe

2 files changed

Lines changed: 14 additions & 8 deletions

File tree

docs/docs/configuration/config.yaml.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ To access applications running inside a DevSpace, the DevSpace CLI allows to con
114114
- `labelSelector` *map[string]string* usually the release/app name
115115
- `portMappings` *PortMapping array*
116116

117-
### devspace.portForwarding[*].portMappings[*]
117+
### devspace.portForwarding[].portMappings[]
118118
PortMapping:
119119
- `localPort` *string* on localhost
120120
- `remotePort` *string* remote pod port
@@ -136,43 +136,43 @@ In the example above, the entire code within the project would be synchronized w
136136
## images
137137
This section of the config defines a map of images that can be used in the helm chart that is deployed during `devspace up`.
138138

139-
### images[*]
139+
### images[]
140140
An image is defined by:
141141
- `name` *string* of the image that is being pushed to the registry
142142
- `tag` *string* stating the latest tag pushed to the registry (auto-generated)
143143
- `registry` *string* referencing one of the keys defined in the `registries` map
144144
- `build` *BuildConfig* defines the build procedure for this image
145145

146-
### images[*].build
146+
### images[].build
147147
BuildConfig:
148148
- `engine` *Engine* The engine that should be used for building the image
149149

150-
### images[*].build.engine
150+
### images[].build.engine
151151
Engine:
152152
An image build is mainly defined by the build engine. There are 2 build engines currently supported (choose only one):
153153
- `docker` *DockerConfig* uses the local Docker daemon or a Docker daemon running inside a Minikube cluster (if `preferMinikube` == true)
154154
- `kaniko` *KanikoConfig* builds images in userspace within a build pod running inside the Kubernetes cluster
155155

156-
### images[*].build.engine.docker
156+
### images[].build.engine.docker
157157
DockerConfig:
158158
- `enabled` *bool* if true the local docker daemon is used for image building
159159
- `preferMinikube` *bool* if true and the current kubectl context is minikube, the minikube docker daemon is used for image building
160160

161-
### images[*].build.engine.kaniko
161+
### images[].build.engine.kaniko
162162
KanikoConfig:
163163
- `enabled` *bool* if true a kaniko build pod is used for image building
164164
- `namespace` *string* specifies the namespace where the build pod should be started
165165

166166
## registries
167167
This section of the config defines a map of image registries. You can use any external registry or link to the [services.internalRegistry](#services-internal-registry)
168168

169-
### registries[*]
169+
### registries[]
170170
ImageRegistry:
171171
- `url` *string* of the registry (format: myregistry.com:port)
172172
- `insecure` *bool* flag to allow pushing to registries without HTTPS
173173
- `user` *RegistryUser* credentials for pushing to / pulling from the registry
174174

175-
### registries[*].user
175+
### registries[].user
176176
RegistryUser:
177177
- `username` *string* that should be used for pushing and pulling from the registry
178178
- `password` *string* that should be used for pushing and pulling from the registry

docs/website/static/css/custom.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,12 @@ h3 {
9494
background: #233366;
9595
}
9696

97+
.post em {
98+
font-style: italic;
99+
font-size: 90%;
100+
padding: 0 2px;
101+
}
102+
97103
.post .hljs {
98104
margin: 0 -25px;
99105
}

0 commit comments

Comments
 (0)