Skip to content

Commit

Permalink
Fix dagster k8s typo (#7028)
Browse files Browse the repository at this point in the history
<!--- Hello Dagster contributor! It's great to have you with us! -->
<!-- Make sure to read https://docs.dagster.io/community/contributing -->

## Summary
<!-- Describe your changes here, include the motivation/context, test coverage, -->
<!-- the type of change i.e. breaking change, new feature, or bug fix -->
<!-- and related GitHub issue or screenshots (if applicable). -->




## Test Plan
<!--- Please describe the tests you have added and your testing environment (if applicable). -->




## Checklist
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
<!--- If you're unsure about any of these, don't hesitate to ask in our Slack. -->

- [ ] My change requires a change to the documentation and I have updated the documentation accordingly.
- [ ] I have added tests to cover my changes.
  • Loading branch information
johannkm committed Mar 11, 2022
1 parent 16b7b4d commit 1dc6cf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python_modules/libraries/dagster-k8s/dagster_k8s/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def __new__(
),
env_config_maps=check.opt_list_param(env_config_maps, "env_config_maps", of_type=str),
env_secrets=check.opt_list_param(env_secrets, "env_secrets", of_type=str),
env_vars=check.opt_list_param(env_vars, "env_secrets", of_type=str),
env_vars=check.opt_list_param(env_vars, "env_vars", of_type=str),
volume_mounts=[
k8s_snake_case_dict(kubernetes.client.V1VolumeMount, mount)
for mount in check.opt_list_param(volume_mounts, "volume_mounts")
Expand Down

0 comments on commit 1dc6cf5

Please sign in to comment.